using Edu.Common.Enum; using System; using System.Collections.Generic; using System.Text; using VT.FW.DB; namespace Edu.Model.Entity.Survey { /// /// 意见调查选项信息表 /// [Serializable] [DB(ConnectionName = "DefaultConnection")] public class Rb_Education_SurveyOptions { /// /// 编号 /// public int ID { get; set; } /// /// 调查表id /// public int SurveyID { get; set; } /// /// 选项名称 /// public string OptionsName { get; set; } /// /// 删除 /// public DateStateEnum State { get; set; } /// /// 排序 /// public int Sort { get; set; } } }