using System.Runtime.Serialization; namespace SuperMap.RealEstate.Seller.Running.Interface { #region T_SELLERBARCODE ISELLERBARCODE 接口 /// /// T_SELLERBARCODE 接口 /// public interface ISELLERBARCODE { /// /// 内码 /// System.Int32? SELLERBARCODE_ID { get; set; } /// /// 内码 的加密字符串 /// string SELLERBARCODE_ID_Encrypt { get; set; } /// /// 条码 /// System.String BARCODE { get; set; } /// /// 商品内码 /// System.Int32? SELLERCOMMODITY_ID { get; set; } /// /// 商户内码 /// System.Int32? SELLER_ID { get; set; } } #endregion #region T_SELLERBARCODE IModifySELLERBARCODE 接口 /// /// T_SELLERBARCODE 接口 /// public interface IModifySELLERBARCODE { /// /// 内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SELLERBARCODE_ID { get; set; } /// /// 条码 是否被修改,不建议直接对其赋值操作 /// bool Modify_BARCODE { get; set; } /// /// 商品内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SELLERCOMMODITY_ID { get; set; } /// /// 商户内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SELLER_ID { get; set; } } #endregion #region T_SELLERBARCODE 的表明、字段名、字段描述 /// /// T_SELLERBARCODE_条码标 的字段类 /// public class TableSchema_SELLERBARCODE { /// /// 序列名 (用于Oracle主键) /// public const string SequenceName = "seq_sellerbarcode"; /// /// 表名 /// public const string TableName = "T_SELLERBARCODE"; /// /// 表注释 /// public const string Comment_TableName = "条码标"; /// /// 主键 /// public const string KeyFieldName = "SELLERBARCODE_ID"; /// /// 内码 /// public const string SELLERBARCODE_ID = "SELLERBARCODE_ID"; /// /// 条码 /// public const string BARCODE = "BARCODE"; /// /// 商品内码 /// public const string SELLERCOMMODITY_ID = "SELLERCOMMODITY_ID"; /// /// 商户内码 /// public const string SELLER_ID = "SELLER_ID"; /// /// 内码 /// public const string Comment_SELLERBARCODE_ID = "内码"; /// /// 条码 /// public const string Comment_BARCODE = "条码"; /// /// 商品内码 /// public const string Comment_SELLERCOMMODITY_ID = "商品内码"; /// /// 商户内码 /// public const string Comment_SELLER_ID = "商户内码"; } #endregion }