19 lines
498 B
C#
19 lines
498 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("EXAM_ITEMBANK")]
|
|
public 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; }
|
|
}
|
|
}
|