using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace libEShangPB { internal class BusinessLogModel { /// /// 业务办理日志内码 /// public decimal BusinessLog_ID { get; set; } /// /// 业务类型 /// public decimal BusinessLog_Type { get; set; } /// /// 业务内码 /// public decimal Business_ID { get; set; } /// /// 业务表名称 /// public string Table_Name { get; set; } /// /// 业务表用户 /// public string Owner_Name { get; set; } /// /// 日志内容 /// public string BusinessLog_Content { get; set; } /// /// 操作时间 /// public decimal Operate_Date { get; set; } /// /// 数据一致性(0:不一致;1:一致) /// public decimal Data_Consistency { get; set; } /// /// 反查标识(0:后续需要干预处理的日志,1:纯记录,作为定时删除日志的标记) /// public decimal Check_State { get; set; } /// /// 是否需要重传数据 /// public bool Reload_Data { get; set; } /// /// 日结账期唯一标识 /// public string UniqueCode { get; set; } /// /// 服务区编码 /// public string ServerpartCode { get; set; } /// /// 门店编码 /// public string ShopCode { get; set; } /// /// 收银机号 /// public string MachineCode { get; set; } /// /// 业态编码 /// public decimal? BusinessType { get; set; } /// /// 单品金额 /// public decimal? Sale_Amount { get; set; } /// /// 实收金额 /// public decimal? Cashpay_Amount { get; set; } /// /// 自然日移动支付金额 /// public decimal? Daily_Amount { get; set; } /// /// 通道移动支付金额 /// public decimal? Channel_Amount { get; set; } /// /// 账期记录ID /// public int? Endaccount_ID { get; set; } /// /// 数据日期时间 /// 自然日时间格式:yyyyMMdd /// 日结账时间格式:yyyyMMddHHmmss /// public long Statistics_Date { get; set; } } }