using System.Runtime.Serialization; namespace SuperMap.RealEstate.Coop.Merchant.Interface { #region T_MALLREPLY IMALLREPLY 接口 /// /// T_MALLREPLY 接口 /// public interface IMALLREPLY { /// /// 内码 /// System.Int32? MALLREPLY_ID { get; set; } /// /// 内码 的加密字符串 /// string MALLREPLY_ID_Encrypt { get; set; } /// /// 商城评价内码 /// System.Int32? MALLCOMMENT_ID { get; set; } /// /// 评价内容 /// System.String MALLCOMMENT_CONTENT { get; set; } /// /// 评分(有小数) /// System.Double? MALLCOMMENT_SCORE { get; set; } /// /// 商家内码 /// System.Int32? MERCHANTS_ID { get; set; } /// /// 商家名称 /// System.String MERCHANTS_NAME { get; set; } /// /// 供应商内码 /// System.Int32? SUPPLIER_ID { get; set; } /// /// 供货商名称 /// System.String SUPPLIER_NAME { get; set; } /// /// 订单内码 /// System.Int32? SALEBILL_ID { get; set; } /// /// 订单编码 /// System.String SALEBILL_CODE { get; set; } /// /// 子订单内码 /// System.Int32? SALEBILL_CHILD_ID { get; set; } /// /// 子订单编码 /// System.String SALEBILL_CHILD_CODE { get; set; } /// /// 商品内码 /// System.Int32? COMMODITY_ID { get; set; } /// /// 商品名称 /// System.String COMMODITY_NAME { get; set; } /// /// 是否匿名(0:不匿名;1:匿名) /// System.Int32? ISANONYMOUS { get; set; } /// /// 会员内码 /// System.Int32? MEMBERSHIP_ID { get; set; } /// /// 会员名称 /// System.String MEMBERSHIP_NAME { get; set; } /// /// 会员类型 /// System.Int32? MEMBERSHIP_TYPE { get; set; } /// /// 是否有效 /// System.Int32? ISVALID { get; set; } /// /// 评价时间 /// System.DateTime? MALLCOMMENT_DATE { get; set; } /// /// 回复人员 /// System.Int32? STAFF_ID { get; set; } /// /// 回复人名称 /// System.String STAFF_NAME { get; set; } /// /// 回复时间 /// System.DateTime? MALLREPLY_DATE { get; set; } /// /// 回复内容 /// System.String MALLREPLY_CONTENT { get; set; } /// /// 备注 /// System.String MALLREPLY_DESC { get; set; } } #endregion #region T_MALLREPLY IModifyMALLREPLY 接口 /// /// T_MALLREPLY 接口 /// public interface IModifyMALLREPLY { /// /// 内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLREPLY_ID { get; set; } /// /// 商城评价内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLCOMMENT_ID { get; set; } /// /// 评价内容 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLCOMMENT_CONTENT { get; set; } /// /// 评分(有小数) 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLCOMMENT_SCORE { get; set; } /// /// 商家内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_MERCHANTS_ID { get; set; } /// /// 商家名称 是否被修改,不建议直接对其赋值操作 /// bool Modify_MERCHANTS_NAME { get; set; } /// /// 供应商内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SUPPLIER_ID { get; set; } /// /// 供货商名称 是否被修改,不建议直接对其赋值操作 /// bool Modify_SUPPLIER_NAME { get; set; } /// /// 订单内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SALEBILL_ID { get; set; } /// /// 订单编码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SALEBILL_CODE { get; set; } /// /// 子订单内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SALEBILL_CHILD_ID { get; set; } /// /// 子订单编码 是否被修改,不建议直接对其赋值操作 /// bool Modify_SALEBILL_CHILD_CODE { get; set; } /// /// 商品内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_COMMODITY_ID { get; set; } /// /// 商品名称 是否被修改,不建议直接对其赋值操作 /// bool Modify_COMMODITY_NAME { get; set; } /// /// 是否匿名(0:不匿名;1:匿名) 是否被修改,不建议直接对其赋值操作 /// bool Modify_ISANONYMOUS { get; set; } /// /// 会员内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_MEMBERSHIP_ID { get; set; } /// /// 会员名称 是否被修改,不建议直接对其赋值操作 /// bool Modify_MEMBERSHIP_NAME { get; set; } /// /// 会员类型 是否被修改,不建议直接对其赋值操作 /// bool Modify_MEMBERSHIP_TYPE { get; set; } /// /// 是否有效 是否被修改,不建议直接对其赋值操作 /// bool Modify_ISVALID { get; set; } /// /// 评价时间 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLCOMMENT_DATE { get; set; } /// /// 回复人员 是否被修改,不建议直接对其赋值操作 /// bool Modify_STAFF_ID { get; set; } /// /// 回复人名称 是否被修改,不建议直接对其赋值操作 /// bool Modify_STAFF_NAME { get; set; } /// /// 回复时间 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLREPLY_DATE { get; set; } /// /// 回复内容 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLREPLY_CONTENT { get; set; } /// /// 备注 是否被修改,不建议直接对其赋值操作 /// bool Modify_MALLREPLY_DESC { get; set; } } #endregion #region T_MALLREPLY 的表明、字段名、字段描述 /// /// T_MALLREPLY_商城评价回复表 的字段类 /// public class TableSchema_MALLREPLY { /// /// 序列名 (用于Oracle主键) /// public const string SequenceName = "seq_mallreply"; /// /// 表名 /// public const string TableName = "T_MALLREPLY"; /// /// 表注释 /// public const string Comment_TableName = "商城评价回复表"; /// /// 主键 /// public const string KeyFieldName = "MALLREPLY_ID"; /// /// 内码 /// public const string MALLREPLY_ID = "MALLREPLY_ID"; /// /// 商城评价内码 /// public const string MALLCOMMENT_ID = "MALLCOMMENT_ID"; /// /// 评价内容 /// public const string MALLCOMMENT_CONTENT = "MALLCOMMENT_CONTENT"; /// /// 评分(有小数) /// public const string MALLCOMMENT_SCORE = "MALLCOMMENT_SCORE"; /// /// 商家内码 /// public const string MERCHANTS_ID = "MERCHANTS_ID"; /// /// 商家名称 /// public const string MERCHANTS_NAME = "MERCHANTS_NAME"; /// /// 供应商内码 /// public const string SUPPLIER_ID = "SUPPLIER_ID"; /// /// 供货商名称 /// public const string SUPPLIER_NAME = "SUPPLIER_NAME"; /// /// 订单内码 /// public const string SALEBILL_ID = "SALEBILL_ID"; /// /// 订单编码 /// public const string SALEBILL_CODE = "SALEBILL_CODE"; /// /// 子订单内码 /// public const string SALEBILL_CHILD_ID = "SALEBILL_CHILD_ID"; /// /// 子订单编码 /// public const string SALEBILL_CHILD_CODE = "SALEBILL_CHILD_CODE"; /// /// 商品内码 /// public const string COMMODITY_ID = "COMMODITY_ID"; /// /// 商品名称 /// public const string COMMODITY_NAME = "COMMODITY_NAME"; /// /// 是否匿名(0:不匿名;1:匿名) /// public const string ISANONYMOUS = "ISANONYMOUS"; /// /// 会员内码 /// public const string MEMBERSHIP_ID = "MEMBERSHIP_ID"; /// /// 会员名称 /// public const string MEMBERSHIP_NAME = "MEMBERSHIP_NAME"; /// /// 会员类型 /// public const string MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE"; /// /// 是否有效 /// public const string ISVALID = "ISVALID"; /// /// 评价时间 /// public const string MALLCOMMENT_DATE = "MALLCOMMENT_DATE"; /// /// 回复人员 /// public const string STAFF_ID = "STAFF_ID"; /// /// 回复人名称 /// public const string STAFF_NAME = "STAFF_NAME"; /// /// 回复时间 /// public const string MALLREPLY_DATE = "MALLREPLY_DATE"; /// /// 回复内容 /// public const string MALLREPLY_CONTENT = "MALLREPLY_CONTENT"; /// /// 备注 /// public const string MALLREPLY_DESC = "MALLREPLY_DESC"; /// /// 内码 /// public const string Comment_MALLREPLY_ID = "内码"; /// /// 商城评价内码 /// public const string Comment_MALLCOMMENT_ID = "商城评价内码"; /// /// 评价内容 /// public const string Comment_MALLCOMMENT_CONTENT = "评价内容"; /// /// 评分(有小数) /// public const string Comment_MALLCOMMENT_SCORE = "评分(有小数)"; /// /// 商家内码 /// public const string Comment_MERCHANTS_ID = "商家内码"; /// /// 商家名称 /// public const string Comment_MERCHANTS_NAME = "商家名称"; /// /// 供应商内码 /// public const string Comment_SUPPLIER_ID = "供应商内码"; /// /// 供货商名称 /// public const string Comment_SUPPLIER_NAME = "供货商名称"; /// /// 订单内码 /// public const string Comment_SALEBILL_ID = "订单内码"; /// /// 订单编码 /// public const string Comment_SALEBILL_CODE = "订单编码"; /// /// 子订单内码 /// public const string Comment_SALEBILL_CHILD_ID = "子订单内码"; /// /// 子订单编码 /// public const string Comment_SALEBILL_CHILD_CODE = "子订单编码"; /// /// 商品内码 /// public const string Comment_COMMODITY_ID = "商品内码"; /// /// 商品名称 /// public const string Comment_COMMODITY_NAME = "商品名称"; /// /// 是否匿名(0:不匿名;1:匿名) /// public const string Comment_ISANONYMOUS = "是否匿名(0:不匿名;1:匿名)"; /// /// 会员内码 /// public const string Comment_MEMBERSHIP_ID = "会员内码"; /// /// 会员名称 /// public const string Comment_MEMBERSHIP_NAME = "会员名称"; /// /// 会员类型 /// public const string Comment_MEMBERSHIP_TYPE = "会员类型"; /// /// 是否有效 /// public const string Comment_ISVALID = "是否有效"; /// /// 评价时间 /// public const string Comment_MALLCOMMENT_DATE = "评价时间"; /// /// 回复人员 /// public const string Comment_STAFF_ID = "回复人员"; /// /// 回复人名称 /// public const string Comment_STAFF_NAME = "回复人名称"; /// /// 回复时间 /// public const string Comment_MALLREPLY_DATE = "回复时间"; /// /// 回复内容 /// public const string Comment_MALLREPLY_CONTENT = "回复内容"; /// /// 备注 /// public const string Comment_MALLREPLY_DESC = "备注"; } #endregion }