namespace PMS.EntityModels.ComplaintManage { using QWPlatform.DataIntface.Database; using QWPlatform.Models; using System; /// /// 测试实体类 /// [Table("项目投诉附件")] public class ComplaintFileModel : DataModelBase { //默认不带数据工厂构造 /// /// Initializes a new instance of the class. /// public ComplaintFileModel() { } //带有数据工厂的实例化,可以直接操作数据 /// /// Initializes a new instance of the class. /// /// The factory public ComplaintFileModel(DataFactory factory) : base(factory) { } /// /// Gets or sets the FJID /// [FieldBase("附件ID", "", "", true, false, "", 36, 0, "VARCHAR2")] public string FJID { get; set; } /// /// Gets or sets the TSID /// [FieldBase("投诉ID", "", "", false, false, "", 36, 0, "VARCHAR2")] public string TSID { get; set; } /// /// Gets or sets the LX /// [FieldBase("类型", "(1-图片;2-附件;)", "", false, false, "", 1, 0, "NUMBER")] public int? LX { get; set; } /// /// Gets or sets the TJSJ /// [FieldBase("添加时间", "", "", false, false, "", 7, 0, "DATE")] public DateTime? TJSJ { get; set; } /// /// Gets or sets the TJR /// [FieldBase("添加人", "", "", false, false, "", 10, 0, "VARCHAR2")] public string TJR { get; set; } /// /// Gets or sets the FJLJ /// [FieldBase("附件路径", "", "", false, false, "", 100, 0, "VARCHAR2")] public string FJLJ { get; set; } } }