namespace PMS.EntityModels.Channel { using QWPlatform.DataIntface.Database; using QWPlatform.Models; using System; /// /// 创建者:冉利 /// 创建日期:2018/12/10 /// 功能描述:渠道信息实体 /// [Table("渠道信息")] public class ChannelModel : DataModelBase { /// /// Initializes a new instance of the class. /// public ChannelModel() { } //数据工厂直接操作实体 /// /// Initializes a new instance of the class. /// /// The factory public ChannelModel(DataFactory factory) : base(factory) { } /// /// Gets or sets the ID /// 渠道ID /// [FieldBase("ID", "", "", true, false, "", 36, 0, "VARCHAR2")] public string ID { get; set; } /// /// Gets or sets the code /// 编码 /// [FieldBase("编码", "", "", true, false, "", 5, 0, "VARCHAR2")] public string code { get; set; } /// /// Gets or sets the name /// 名称 /// [FieldBase("名称", "", "", true, false, "", 20, 0, "VARCHAR2")] public string name { get; set; } /// /// Gets or sets the brevitycode /// 简码 /// [FieldBase("简码", "", "", true, false, "", 30, 0, "VARCHAR2")] public string brevitycode { get; set; } /// /// Gets or sets the nature /// 性质 /// [FieldBase("性质", "基础编码的团队性质", "", true, false, "", 1, 0, "VARCHAR2")] public string nature { get; set; } /// /// Gets or sets the startdate /// 开始日期 /// [FieldBase("开始日期", "", "", true, false, "", 7, 0, "DATE")] public DateTime startdate { get; set; } /// /// Gets or sets the endtime /// 终止日期 /// [FieldBase("终止日期", "", "", false, false, "", 7, 0, "DATE")] public string endtime { get; set; } /// /// Gets or sets the phonenumber /// 电话 /// [FieldBase("电话", "", "", false, false, "", 20, 0, "VARCHAR2")] public string phonenumber { get; set; } /// /// Gets or sets the business /// 商务联系人 /// [FieldBase("商务联系人", "", "", false, false, "", 30, 0, "VARCHAR2")] public string business { get; set; } /// /// Gets or sets the technology /// 技术联系人 /// [FieldBase("技术联系人", "", "", false, false, "", 30, 0, "VARCHAR2")] public string technology { get; set; } /// /// Gets or sets the address /// 地址 /// [FieldBase("地址", "", "", false, false, "", 200, 0, "VARCHAR2")] public string address { get; set; } /// /// Gets or sets the note /// 备注 /// [FieldBase("备注", "", "", false, false, "", 200, 0, "VARCHAR2")] public string note { get; set; } /// /// Gets or sets the state /// 状态 /// [FieldBase("状态", "1正常 0终止", "", true, false, "", 1, 0, "NUMBER")] public int state { get; set; } /// /// Gets or sets the businessMail /// 商务联系人邮箱 /// [FieldBase("商务联系人邮箱", "", "", false, false, "", 200, 0, "VARCHAR2")] public string businessMail { get; set; } /// /// Gets or sets the businessWxin /// 商务联系人微信 /// [FieldBase("商务联系人微信", "", "", false, false, "", 200, 0, "VARCHAR2")] public string businessWxin { get; set; } /// /// Gets or sets the technologyMail /// 技术联系人邮箱 /// [FieldBase("技术联系人邮箱", "", "", false, false, "", 200, 0, "VARCHAR2")] public string technologyMail { get; set; } /// /// Gets or sets the technologyWxin /// 技术联系人微信 /// [FieldBase("技术联系人微信", "", "", false, false, "", 200, 0, "VARCHAR2")] public string technologyWxin { get; set; } } }