20 lines
615 B
C#
20 lines
615 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.EXAM_ITEMBANKSUBJECT")]
|
|
public partial 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; }
|
|
}
|
|
}
|