19 lines
510 B
C#
19 lines
510 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.EXAM_ITEMBANK")]
|
|
public partial class EXAM_ITEMBANK
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public string TITLE { get; set; }
|
|
public decimal TYPE { get; set; }
|
|
public string TYPENAME { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public decimal CREATEUSER { get; set; }
|
|
}
|
|
}
|