2025-03-28 09:49:56 +08:00

452 lines
15 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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