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

116 lines
3.4 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.HighWay.Running.Interface
{
#region T_RTSUPPLIER IRTSUPPLIER
/// <summary>
/// T_RTSUPPLIER 接口
/// </summary>
public interface IRTSUPPLIER
{
/// <summary>
/// 内码
/// </summary>
System.Int32? RTSUPPLIER_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string RTSUPPLIER_ID_Encrypt { get; set; }
/// <summary>
/// 供货商内码
/// </summary>
System.Int32? SUPPLIER_ID { get; set; }
/// <summary>
/// 商品内码
/// </summary>
System.Int32? COMMODITY_ID { get; set; }
/// <summary>
/// 其他
/// </summary>
System.String RTSUPPLIER_DESC { get; set; }
}
#endregion
#region T_RTSUPPLIER IModifyRTSUPPLIER
/// <summary>
/// T_RTSUPPLIER 接口
/// </summary>
public interface IModifyRTSUPPLIER
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTSUPPLIER_ID { get; set; }
/// <summary>
/// 供货商内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SUPPLIER_ID { get; set; }
/// <summary>
/// 商品内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COMMODITY_ID { get; set; }
/// <summary>
/// 其他 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RTSUPPLIER_DESC { get; set; }
}
#endregion
#region T_RTSUPPLIER
/// <summary>
/// T_RTSUPPLIER_供应商关联关系 的字段类
/// </summary>
public class TableSchema_RTSUPPLIER
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_rtsupplier";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_RTSUPPLIER";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "供应商关联关系";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "RTSUPPLIER_ID";
/// <summary>
/// 内码
/// </summary>
public const string RTSUPPLIER_ID = "RTSUPPLIER_ID";
/// <summary>
/// 供货商内码
/// </summary>
public const string SUPPLIER_ID = "SUPPLIER_ID";
/// <summary>
/// 商品内码
/// </summary>
public const string COMMODITY_ID = "COMMODITY_ID";
/// <summary>
/// 其他
/// </summary>
public const string RTSUPPLIER_DESC = "RTSUPPLIER_DESC";
/// <summary>
/// 内码
/// </summary>
public const string Comment_RTSUPPLIER_ID = "内码";
/// <summary>
/// 供货商内码
/// </summary>
public const string Comment_SUPPLIER_ID = "供货商内码";
/// <summary>
/// 商品内码
/// </summary>
public const string Comment_COMMODITY_ID = "商品内码";
/// <summary>
/// 其他
/// </summary>
public const string Comment_RTSUPPLIER_DESC = "其他";
}
#endregion
}