356 lines
11 KiB
C#
356 lines
11 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.ExchangeData.Interface
|
|
{
|
|
#region T_PERSONSELL_EX IPERSONSELL_EX 接口
|
|
/// <summary>
|
|
/// T_PERSONSELL_EX 接口
|
|
/// </summary>
|
|
public interface IPERSONSELL_EX
|
|
{
|
|
/// <summary>
|
|
/// PERSONSELL_EX_ID
|
|
/// </summary>
|
|
System.Int32? PERSONSELL_EX_ID { get; set; }
|
|
/// <summary>
|
|
/// PERSONSELL_EX_ID 的加密字符串
|
|
/// </summary>
|
|
string PERSONSELL_EX_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// SERVERPARTCODE
|
|
/// </summary>
|
|
System.String SERVERPARTCODE { get; set; }
|
|
/// <summary>
|
|
/// SHOPCODE
|
|
/// </summary>
|
|
System.String SHOPCODE { get; set; }
|
|
/// <summary>
|
|
/// MACHINECODE
|
|
/// </summary>
|
|
System.String MACHINECODE { get; set; }
|
|
/// <summary>
|
|
/// STARTDATE
|
|
/// </summary>
|
|
System.DateTime? STARTDATE { get; set; }
|
|
/// <summary>
|
|
/// ENDDATE
|
|
/// </summary>
|
|
System.DateTime? ENDDATE { get; set; }
|
|
/// <summary>
|
|
/// CASHWORKER_CODE
|
|
/// </summary>
|
|
System.String CASHWORKER_CODE { get; set; }
|
|
/// <summary>
|
|
/// TICKETCOUNT
|
|
/// </summary>
|
|
System.Int64? TICKETCOUNT { get; set; }
|
|
/// <summary>
|
|
/// TOTALCOUNT
|
|
/// </summary>
|
|
System.Double? TOTALCOUNT { get; set; }
|
|
/// <summary>
|
|
/// TOTALSELLAMOUNT
|
|
/// </summary>
|
|
System.Double? TOTALSELLAMOUNT { get; set; }
|
|
/// <summary>
|
|
/// TOTALOFFAMOUNT
|
|
/// </summary>
|
|
System.Double? TOTALOFFAMOUNT { get; set; }
|
|
/// <summary>
|
|
/// CASH
|
|
/// </summary>
|
|
System.Double? CASH { get; set; }
|
|
/// <summary>
|
|
/// TICKETBILL
|
|
/// </summary>
|
|
System.Double? TICKETBILL { get; set; }
|
|
/// <summary>
|
|
/// CREDITCARD
|
|
/// </summary>
|
|
System.Double? CREDITCARD { get; set; }
|
|
/// <summary>
|
|
/// VIPPERSON
|
|
/// </summary>
|
|
System.Double? VIPPERSON { get; set; }
|
|
/// <summary>
|
|
/// COSTBILL
|
|
/// </summary>
|
|
System.Double? COSTBILL { get; set; }
|
|
/// <summary>
|
|
/// OTHERPAY
|
|
/// </summary>
|
|
System.Double? OTHERPAY { get; set; }
|
|
/// <summary>
|
|
/// CASHPAY
|
|
/// </summary>
|
|
System.Double? CASHPAY { get; set; }
|
|
/// <summary>
|
|
/// ENDPERSONCODE
|
|
/// </summary>
|
|
System.String ENDPERSONCODE { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_PERSONSELL_EX IModifyPERSONSELL_EX 接口
|
|
/// <summary>
|
|
/// T_PERSONSELL_EX 接口
|
|
/// </summary>
|
|
public interface IModifyPERSONSELL_EX
|
|
{
|
|
/// <summary>
|
|
/// PERSONSELL_EX_ID 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PERSONSELL_EX_ID { get; set; }
|
|
/// <summary>
|
|
/// SERVERPARTCODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPARTCODE { get; set; }
|
|
/// <summary>
|
|
/// SHOPCODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SHOPCODE { get; set; }
|
|
/// <summary>
|
|
/// MACHINECODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MACHINECODE { get; set; }
|
|
/// <summary>
|
|
/// STARTDATE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STARTDATE { get; set; }
|
|
/// <summary>
|
|
/// ENDDATE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ENDDATE { get; set; }
|
|
/// <summary>
|
|
/// CASHWORKER_CODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_CASHWORKER_CODE { get; set; }
|
|
/// <summary>
|
|
/// TICKETCOUNT 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TICKETCOUNT { get; set; }
|
|
/// <summary>
|
|
/// TOTALCOUNT 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TOTALCOUNT { get; set; }
|
|
/// <summary>
|
|
/// TOTALSELLAMOUNT 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TOTALSELLAMOUNT { get; set; }
|
|
/// <summary>
|
|
/// TOTALOFFAMOUNT 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TOTALOFFAMOUNT { get; set; }
|
|
/// <summary>
|
|
/// CASH 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_CASH { get; set; }
|
|
/// <summary>
|
|
/// TICKETBILL 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TICKETBILL { get; set; }
|
|
/// <summary>
|
|
/// CREDITCARD 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_CREDITCARD { get; set; }
|
|
/// <summary>
|
|
/// VIPPERSON 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_VIPPERSON { get; set; }
|
|
/// <summary>
|
|
/// COSTBILL 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_COSTBILL { get; set; }
|
|
/// <summary>
|
|
/// OTHERPAY 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OTHERPAY { get; set; }
|
|
/// <summary>
|
|
/// CASHPAY 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_CASHPAY { get; set; }
|
|
/// <summary>
|
|
/// ENDPERSONCODE 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ENDPERSONCODE { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_PERSONSELL_EX 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_PERSONSELL_EX_ 的字段类
|
|
/// </summary>
|
|
public class TableSchema_PERSONSELL_EX
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_personsell_ex";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_PERSONSELL_EX";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "PERSONSELL_EX_ID";
|
|
/// <summary>
|
|
/// PERSONSELL_EX_ID
|
|
/// </summary>
|
|
public const string PERSONSELL_EX_ID = "PERSONSELL_EX_ID";
|
|
/// <summary>
|
|
/// SERVERPARTCODE
|
|
/// </summary>
|
|
public const string SERVERPARTCODE = "SERVERPARTCODE";
|
|
/// <summary>
|
|
/// SHOPCODE
|
|
/// </summary>
|
|
public const string SHOPCODE = "SHOPCODE";
|
|
/// <summary>
|
|
/// MACHINECODE
|
|
/// </summary>
|
|
public const string MACHINECODE = "MACHINECODE";
|
|
/// <summary>
|
|
/// STARTDATE
|
|
/// </summary>
|
|
public const string STARTDATE = "STARTDATE";
|
|
/// <summary>
|
|
/// ENDDATE
|
|
/// </summary>
|
|
public const string ENDDATE = "ENDDATE";
|
|
/// <summary>
|
|
/// CASHWORKER_CODE
|
|
/// </summary>
|
|
public const string CASHWORKER_CODE = "CASHWORKER_CODE";
|
|
/// <summary>
|
|
/// TICKETCOUNT
|
|
/// </summary>
|
|
public const string TICKETCOUNT = "TICKETCOUNT";
|
|
/// <summary>
|
|
/// TOTALCOUNT
|
|
/// </summary>
|
|
public const string TOTALCOUNT = "TOTALCOUNT";
|
|
/// <summary>
|
|
/// TOTALSELLAMOUNT
|
|
/// </summary>
|
|
public const string TOTALSELLAMOUNT = "TOTALSELLAMOUNT";
|
|
/// <summary>
|
|
/// TOTALOFFAMOUNT
|
|
/// </summary>
|
|
public const string TOTALOFFAMOUNT = "TOTALOFFAMOUNT";
|
|
/// <summary>
|
|
/// CASH
|
|
/// </summary>
|
|
public const string CASH = "CASH";
|
|
/// <summary>
|
|
/// TICKETBILL
|
|
/// </summary>
|
|
public const string TICKETBILL = "TICKETBILL";
|
|
/// <summary>
|
|
/// CREDITCARD
|
|
/// </summary>
|
|
public const string CREDITCARD = "CREDITCARD";
|
|
/// <summary>
|
|
/// VIPPERSON
|
|
/// </summary>
|
|
public const string VIPPERSON = "VIPPERSON";
|
|
/// <summary>
|
|
/// COSTBILL
|
|
/// </summary>
|
|
public const string COSTBILL = "COSTBILL";
|
|
/// <summary>
|
|
/// OTHERPAY
|
|
/// </summary>
|
|
public const string OTHERPAY = "OTHERPAY";
|
|
/// <summary>
|
|
/// CASHPAY
|
|
/// </summary>
|
|
public const string CASHPAY = "CASHPAY";
|
|
/// <summary>
|
|
/// ENDPERSONCODE
|
|
/// </summary>
|
|
public const string ENDPERSONCODE = "ENDPERSONCODE";
|
|
/// <summary>
|
|
/// PERSONSELL_EX_ID
|
|
/// </summary>
|
|
public const string Comment_PERSONSELL_EX_ID = "PERSONSELL_EX_ID";
|
|
/// <summary>
|
|
/// SERVERPARTCODE
|
|
/// </summary>
|
|
public const string Comment_SERVERPARTCODE = "SERVERPARTCODE";
|
|
/// <summary>
|
|
/// SHOPCODE
|
|
/// </summary>
|
|
public const string Comment_SHOPCODE = "SHOPCODE";
|
|
/// <summary>
|
|
/// MACHINECODE
|
|
/// </summary>
|
|
public const string Comment_MACHINECODE = "MACHINECODE";
|
|
/// <summary>
|
|
/// STARTDATE
|
|
/// </summary>
|
|
public const string Comment_STARTDATE = "STARTDATE";
|
|
/// <summary>
|
|
/// ENDDATE
|
|
/// </summary>
|
|
public const string Comment_ENDDATE = "ENDDATE";
|
|
/// <summary>
|
|
/// CASHWORKER_CODE
|
|
/// </summary>
|
|
public const string Comment_CASHWORKER_CODE = "CASHWORKER_CODE";
|
|
/// <summary>
|
|
/// TICKETCOUNT
|
|
/// </summary>
|
|
public const string Comment_TICKETCOUNT = "TICKETCOUNT";
|
|
/// <summary>
|
|
/// TOTALCOUNT
|
|
/// </summary>
|
|
public const string Comment_TOTALCOUNT = "TOTALCOUNT";
|
|
/// <summary>
|
|
/// TOTALSELLAMOUNT
|
|
/// </summary>
|
|
public const string Comment_TOTALSELLAMOUNT = "TOTALSELLAMOUNT";
|
|
/// <summary>
|
|
/// TOTALOFFAMOUNT
|
|
/// </summary>
|
|
public const string Comment_TOTALOFFAMOUNT = "TOTALOFFAMOUNT";
|
|
/// <summary>
|
|
/// CASH
|
|
/// </summary>
|
|
public const string Comment_CASH = "CASH";
|
|
/// <summary>
|
|
/// TICKETBILL
|
|
/// </summary>
|
|
public const string Comment_TICKETBILL = "TICKETBILL";
|
|
/// <summary>
|
|
/// CREDITCARD
|
|
/// </summary>
|
|
public const string Comment_CREDITCARD = "CREDITCARD";
|
|
/// <summary>
|
|
/// VIPPERSON
|
|
/// </summary>
|
|
public const string Comment_VIPPERSON = "VIPPERSON";
|
|
/// <summary>
|
|
/// COSTBILL
|
|
/// </summary>
|
|
public const string Comment_COSTBILL = "COSTBILL";
|
|
/// <summary>
|
|
/// OTHERPAY
|
|
/// </summary>
|
|
public const string Comment_OTHERPAY = "OTHERPAY";
|
|
/// <summary>
|
|
/// CASHPAY
|
|
/// </summary>
|
|
public const string Comment_CASHPAY = "CASHPAY";
|
|
/// <summary>
|
|
/// ENDPERSONCODE
|
|
/// </summary>
|
|
public const string Comment_ENDPERSONCODE = "ENDPERSONCODE";
|
|
}
|
|
#endregion
|
|
}
|