ComplianceServer/oldcode/Core.Model/Entity/EXAM_ITEMBANKSUBJECT.cs

20 lines
603 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("EXAM_ITEMBANKSUBJECT")]
public class EXAM_ITEMBANKSUBJECT
{
[Key]
public decimal ID { get; set; }
public decimal ITEMBANKID { get; set; }
public decimal ITEMBANKTYPE { get; set; }
public decimal SUBJECTTYPE { get; set; }
public string SUBJECT { get; set; }
public string OPTIONS { get; set; }
public string RIGHTANSWER { get; set; }
public string REMARK { get; set; }
}
}