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