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

244 lines
8.3 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.HighWay.SellData.Interface
{
#region T_YSSELLMASTERHOUR IYSSELLMASTERHOUR
/// <summary>
/// T_YSSELLMASTERHOUR 接口
/// </summary>
public interface IYSSELLMASTERHOUR
{
/// <summary>
/// 内码
/// </summary>
System.Int32? YSSELLMASTERHOUR_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string YSSELLMASTERHOUR_ID_Encrypt { get; set; }
/// <summary>
/// 数据类型0工作日1周末2节假日
/// </summary>
System.Int16? DATA_TYPE { get; set; }
/// <summary>
/// 服务区内码
/// </summary>
System.Int32? SERVERPART_ID { get; set; }
/// <summary>
/// 服务区名称
/// </summary>
System.String SERVERPART_NAME { get; set; }
/// <summary>
/// 门店内码
/// </summary>
System.Int32? SERVERPARTSHOP_ID { get; set; }
/// <summary>
/// 门店名称
/// </summary>
System.String SHOPNAME { get; set; }
/// <summary>
/// 客单数量
/// </summary>
System.Int32? TICKET_COUNT { get; set; }
/// <summary>
/// 销售数量
/// </summary>
System.Double? SELLMASTER_COUNT { get; set; }
/// <summary>
/// 销售金额
/// </summary>
System.Double? SELLMASTER_AMOUNT { get; set; }
/// <summary>
/// 统计日期
/// </summary>
System.String STATISTICS_DATE { get; set; }
/// <summary>
/// 统计时段
/// </summary>
System.Int16? STATISTICS_HOUR { get; set; }
/// <summary>
/// 记录时间
/// </summary>
System.String OPERATE_DATE { get; set; }
}
#endregion
#region T_YSSELLMASTERHOUR IModifyYSSELLMASTERHOUR
/// <summary>
/// T_YSSELLMASTERHOUR 接口
/// </summary>
public interface IModifyYSSELLMASTERHOUR
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_YSSELLMASTERHOUR_ID { get; set; }
/// <summary>
/// 数据类型0工作日1周末2节假日 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_DATA_TYPE { get; set; }
/// <summary>
/// 服务区内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SERVERPART_ID { get; set; }
/// <summary>
/// 服务区名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SERVERPART_NAME { get; set; }
/// <summary>
/// 门店内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SERVERPARTSHOP_ID { get; set; }
/// <summary>
/// 门店名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SHOPNAME { get; set; }
/// <summary>
/// 客单数量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TICKET_COUNT { get; set; }
/// <summary>
/// 销售数量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SELLMASTER_COUNT { get; set; }
/// <summary>
/// 销售金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SELLMASTER_AMOUNT { get; set; }
/// <summary>
/// 统计日期 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STATISTICS_DATE { get; set; }
/// <summary>
/// 统计时段 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STATISTICS_HOUR { get; set; }
/// <summary>
/// 记录时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OPERATE_DATE { get; set; }
}
#endregion
#region T_YSSELLMASTERHOUR
/// <summary>
/// T_YSSELLMASTERHOUR_门店时段销售统计表 的字段类
/// </summary>
public class TableSchema_YSSELLMASTERHOUR
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_yssellmasterhour";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_YSSELLMASTERHOUR";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "门店时段销售统计表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "YSSELLMASTERHOUR_ID";
/// <summary>
/// 内码
/// </summary>
public const string YSSELLMASTERHOUR_ID = "YSSELLMASTERHOUR_ID";
/// <summary>
/// 数据类型0工作日1周末2节假日
/// </summary>
public const string DATA_TYPE = "DATA_TYPE";
/// <summary>
/// 服务区内码
/// </summary>
public const string SERVERPART_ID = "SERVERPART_ID";
/// <summary>
/// 服务区名称
/// </summary>
public const string SERVERPART_NAME = "SERVERPART_NAME";
/// <summary>
/// 门店内码
/// </summary>
public const string SERVERPARTSHOP_ID = "SERVERPARTSHOP_ID";
/// <summary>
/// 门店名称
/// </summary>
public const string SHOPNAME = "SHOPNAME";
/// <summary>
/// 客单数量
/// </summary>
public const string TICKET_COUNT = "TICKET_COUNT";
/// <summary>
/// 销售数量
/// </summary>
public const string SELLMASTER_COUNT = "SELLMASTER_COUNT";
/// <summary>
/// 销售金额
/// </summary>
public const string SELLMASTER_AMOUNT = "SELLMASTER_AMOUNT";
/// <summary>
/// 统计日期
/// </summary>
public const string STATISTICS_DATE = "STATISTICS_DATE";
/// <summary>
/// 统计时段
/// </summary>
public const string STATISTICS_HOUR = "STATISTICS_HOUR";
/// <summary>
/// 记录时间
/// </summary>
public const string OPERATE_DATE = "OPERATE_DATE";
/// <summary>
/// 内码
/// </summary>
public const string Comment_YSSELLMASTERHOUR_ID = "内码";
/// <summary>
/// 数据类型0工作日1周末2节假日
/// </summary>
public const string Comment_DATA_TYPE = "数据类型0工作日1周末2节假日";
/// <summary>
/// 服务区内码
/// </summary>
public const string Comment_SERVERPART_ID = "服务区内码";
/// <summary>
/// 服务区名称
/// </summary>
public const string Comment_SERVERPART_NAME = "服务区名称";
/// <summary>
/// 门店内码
/// </summary>
public const string Comment_SERVERPARTSHOP_ID = "门店内码";
/// <summary>
/// 门店名称
/// </summary>
public const string Comment_SHOPNAME = "门店名称";
/// <summary>
/// 客单数量
/// </summary>
public const string Comment_TICKET_COUNT = "客单数量";
/// <summary>
/// 销售数量
/// </summary>
public const string Comment_SELLMASTER_COUNT = "销售数量";
/// <summary>
/// 销售金额
/// </summary>
public const string Comment_SELLMASTER_AMOUNT = "销售金额";
/// <summary>
/// 统计日期
/// </summary>
public const string Comment_STATISTICS_DATE = "统计日期";
/// <summary>
/// 统计时段
/// </summary>
public const string Comment_STATISTICS_HOUR = "统计时段";
/// <summary>
/// 记录时间
/// </summary>
public const string Comment_OPERATE_DATE = "记录时间";
}
#endregion
}