using System.Runtime.Serialization; namespace SuperMap.RealEstate.ExchangeData.Interface { #region T_DOWNLOADUPDATE IDOWNLOADUPDATE 接口 /// /// T_DOWNLOADUPDATE 接口 /// public interface IDOWNLOADUPDATE { /// /// 内码 /// System.Int32? DOWNLOADUPDATE_ID { get; set; } /// /// 内码 的加密字符串 /// string DOWNLOADUPDATE_ID_Encrypt { get; set; } /// /// 省份编码 /// System.String PROVINCE_CODE { get; set; } /// /// 服务区编码 /// System.String SERVERPARTCODE { get; set; } /// /// 门店 /// System.String SHOPCODE { get; set; } /// /// 机器编号 /// System.String MACHINECODE { get; set; } /// /// MAC地址 /// System.String MACHINE_MACADDRESS { get; set; } /// /// 表名 /// System.String TABLENAME { get; set; } /// /// 版本更新时间 /// System.DateTime? VERSIONUPDATE_DATE { get; set; } /// /// 操作员内码 /// System.Int32? STAFF_ID { get; set; } /// /// 操作人员 /// System.String STAFF_NAME { get; set; } /// /// 创建时间 /// System.DateTime? CREATE_DATE { get; set; } /// /// DOWNLOADUPDATE_DESC /// System.String DOWNLOADUPDATE_DESC { get; set; } } #endregion #region T_DOWNLOADUPDATE IModifyDOWNLOADUPDATE 接口 /// /// T_DOWNLOADUPDATE 接口 /// public interface IModifyDOWNLOADUPDATE { /// /// 内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_DOWNLOADUPDATE_ID { get; set; } /// /// 省份编码 是否被修改,不建议直接对其赋值操作 /// bool Modify_PROVINCE_CODE { get; set; } /// /// 服务区编码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SERVERPARTCODE { get; set; } /// /// 门店 是否被修改,不建议直接对其赋值操作 /// bool Modify_SHOPCODE { get; set; } /// /// 机器编号 是否被修改,不建议直接对其赋值操作 /// bool Modify_MACHINECODE { get; set; } /// /// MAC地址 是否被修改,不建议直接对其赋值操作 /// bool Modify_MACHINE_MACADDRESS { get; set; } /// /// 表名 是否被修改,不建议直接对其赋值操作 /// bool Modify_TABLENAME { get; set; } /// /// 版本更新时间 是否被修改,不建议直接对其赋值操作 /// bool Modify_VERSIONUPDATE_DATE { get; set; } /// /// 操作员内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_STAFF_ID { get; set; } /// /// 操作人员 是否被修改,不建议直接对其赋值操作 /// bool Modify_STAFF_NAME { get; set; } /// /// 创建时间 是否被修改,不建议直接对其赋值操作 /// bool Modify_CREATE_DATE { get; set; } /// /// DOWNLOADUPDATE_DESC 是否被修改,不建议直接对其赋值操作 /// bool Modify_DOWNLOADUPDATE_DESC { get; set; } } #endregion #region T_DOWNLOADUPDATE 的表明、字段名、字段描述 /// /// T_DOWNLOADUPDATE_下发更新表 的字段类 /// public class TableSchema_DOWNLOADUPDATE { /// /// 序列名 (用于Oracle主键) /// public const string SequenceName = "seq_downloadupdate"; /// /// 表名 /// public const string TableName = "T_DOWNLOADUPDATE"; /// /// 表注释 /// public const string Comment_TableName = "下发更新表"; /// /// 主键 /// public const string KeyFieldName = "DOWNLOADUPDATE_ID"; /// /// 内码 /// public const string DOWNLOADUPDATE_ID = "DOWNLOADUPDATE_ID"; /// /// 省份编码 /// public const string PROVINCE_CODE = "PROVINCE_CODE"; /// /// 服务区编码 /// public const string SERVERPARTCODE = "SERVERPARTCODE"; /// /// 门店 /// public const string SHOPCODE = "SHOPCODE"; /// /// 机器编号 /// public const string MACHINECODE = "MACHINECODE"; /// /// MAC地址 /// public const string MACHINE_MACADDRESS = "MACHINE_MACADDRESS"; /// /// 表名 /// public const string TABLENAME = "TABLENAME"; /// /// 版本更新时间 /// public const string VERSIONUPDATE_DATE = "VERSIONUPDATE_DATE"; /// /// 操作员内码 /// public const string STAFF_ID = "STAFF_ID"; /// /// 操作人员 /// public const string STAFF_NAME = "STAFF_NAME"; /// /// 创建时间 /// public const string CREATE_DATE = "CREATE_DATE"; /// /// DOWNLOADUPDATE_DESC /// public const string DOWNLOADUPDATE_DESC = "DOWNLOADUPDATE_DESC"; /// /// 内码 /// public const string Comment_DOWNLOADUPDATE_ID = "内码"; /// /// 省份编码 /// public const string Comment_PROVINCE_CODE = "省份编码"; /// /// 服务区编码 /// public const string Comment_SERVERPARTCODE = "服务区编码"; /// /// 门店 /// public const string Comment_SHOPCODE = "门店"; /// /// 机器编号 /// public const string Comment_MACHINECODE = "机器编号"; /// /// MAC地址 /// public const string Comment_MACHINE_MACADDRESS = "MAC地址"; /// /// 表名 /// public const string Comment_TABLENAME = "表名"; /// /// 版本更新时间 /// public const string Comment_VERSIONUPDATE_DATE = "版本更新时间"; /// /// 操作员内码 /// public const string Comment_STAFF_ID = "操作员内码"; /// /// 操作人员 /// public const string Comment_STAFF_NAME = "操作人员"; /// /// 创建时间 /// public const string Comment_CREATE_DATE = "创建时间"; /// /// DOWNLOADUPDATE_DESC /// public const string Comment_DOWNLOADUPDATE_DESC = "DOWNLOADUPDATE_DESC"; } #endregion }