2025-03-27 15:05:14 +08:00

244 lines
7.9 KiB
C#

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