132 lines
4.1 KiB
C#
132 lines
4.1 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.HighWay.Running.Interface
|
|
{
|
|
#region T_RTMULTIBARCODE IRTMULTIBARCODE 接口
|
|
/// <summary>
|
|
/// T_RTMULTIBARCODE 接口
|
|
/// </summary>
|
|
public interface IRTMULTIBARCODE
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? RTMULTIBARCODE_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string RTMULTIBARCODE_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 商品内码
|
|
/// </summary>
|
|
System.Int32? COMMODITY_ID { get; set; }
|
|
/// <summary>
|
|
/// 多码商品内码
|
|
/// </summary>
|
|
System.Int32? MULTIBARCODE_ID { get; set; }
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
System.String COMMODITY_NAME { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
System.String RTMULTIBARCODE_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_RTMULTIBARCODE IModifyRTMULTIBARCODE 接口
|
|
/// <summary>
|
|
/// T_RTMULTIBARCODE 接口
|
|
/// </summary>
|
|
public interface IModifyRTMULTIBARCODE
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RTMULTIBARCODE_ID { get; set; }
|
|
/// <summary>
|
|
/// 商品内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COMMODITY_ID { get; set; }
|
|
/// <summary>
|
|
/// 多码商品内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MULTIBARCODE_ID { get; set; }
|
|
/// <summary>
|
|
/// 商品名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COMMODITY_NAME { get; set; }
|
|
/// <summary>
|
|
/// 备注 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RTMULTIBARCODE_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_RTMULTIBARCODE 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_RTMULTIBARCODE_商品一品多码关联关系 的字段类
|
|
/// </summary>
|
|
public class TableSchema_RTMULTIBARCODE
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_rtmultibarcode";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_RTMULTIBARCODE";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "商品一品多码关联关系";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "RTMULTIBARCODE_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string RTMULTIBARCODE_ID = "RTMULTIBARCODE_ID";
|
|
/// <summary>
|
|
/// 商品内码
|
|
/// </summary>
|
|
public const string COMMODITY_ID = "COMMODITY_ID";
|
|
/// <summary>
|
|
/// 多码商品内码
|
|
/// </summary>
|
|
public const string MULTIBARCODE_ID = "MULTIBARCODE_ID";
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
public const string COMMODITY_NAME = "COMMODITY_NAME";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string RTMULTIBARCODE_DESC = "RTMULTIBARCODE_DESC";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_RTMULTIBARCODE_ID = "内码";
|
|
/// <summary>
|
|
/// 商品内码
|
|
/// </summary>
|
|
public const string Comment_COMMODITY_ID = "商品内码";
|
|
/// <summary>
|
|
/// 多码商品内码
|
|
/// </summary>
|
|
public const string Comment_MULTIBARCODE_ID = "多码商品内码";
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
public const string Comment_COMMODITY_NAME = "商品名称";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string Comment_RTMULTIBARCODE_DESC = "备注";
|
|
}
|
|
#endregion
|
|
}
|