using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.Sale.SaleFundMgt.Model { /// /// 数据库表SEL_FUND_CUST_FUNDINOUT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2022-06-24 /// public class SelFundCustFundinoutExcel { /// /// 进出序列 /// private string busiseq = ""; /// /// 结算主体 /// private string balancesubject = ""; /// /// 客户账户名 /// private string buyercode = ""; /// /// 进出金额,+为进账,-为出账 /// private decimal? inoutmoney = null; /// /// 进出账时间 /// private string inouttime = ""; /// /// 如汇票,电汇,期票,进账单,其他 /// private string fundtype = ""; /// /// 用途 /// private string billno = ""; /// /// 是否有效,0有效,1无效 /// private string isvalid = ""; /// /// 备注 /// private string remark = ""; /// /// 录入人 /// private string importor = ""; /// /// 录入时间 /// private string importtime = ""; /// /// 进,出钱账户剩余金额 /// private decimal? leavemoney = null; /// /// 确认时间 /// private string affrimdate = ""; /// /// 确认人 /// private string affrimper = ""; /// /// 业务片区 /// private string secondaccount = ""; /// /// 进款去向,0默认1制造2集团 /// private string moneyDeliver = ""; /// /// 钢贸同步给制造or集团回款时的单位 /// private string prebuyercode = ""; /// /// 无注释 /// private string invoiceMonth = ""; /// /// 无注释 /// private string invoiceSts = ""; /// /// 合同号 /// private string orderno = ""; /// /// 进出序列 /// [Description("进出序列")] [Nullable(false)] [DataLength(50)] public string Busiseq { get { return busiseq; } set { busiseq = value; } } /// /// 结算主体 /// [Description("结算主体")] [Nullable(true)] [DataLength(40)] public string Balancesubject { get { return balancesubject; } set { balancesubject = value; } } /// /// 客户账户名 /// [Description("客户账户名")] [Nullable(true)] [DataLength(40)] public string Buyercode { get { return buyercode; } set { buyercode = value; } } /// /// 进出金额,+为进账,-为出账 /// [Description("进出金额")] [Nullable(true)] [DataLength(22)] public decimal? Inoutmoney { get { return inoutmoney; } set { inoutmoney = value; } } /// /// 进出账时间 /// [Description("进出账时间")] [Nullable(true)] public string Inouttime { get { return inouttime; } set { inouttime = value; } } /// /// 如汇票,电汇,期票,进账单,其他 /// [Description("类型")] [Nullable(true)] [DataLength(20)] public string Fundtype { get { return fundtype; } set { fundtype = value; } } /// /// 用途 /// [Description("用途")] [Nullable(true)] [DataLength(200)] public string Billno { get { return billno; } set { billno = value; } } /// /// 是否有效,0有效,1无效 /// [Description("是否有效,0有效,1无效")] [Nullable(true)] [DataLength(1)] public string Isvalid { get { return isvalid; } set { isvalid = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(400)] public string Remark { get { return remark; } set { remark = value; } } /// /// 录入人 /// [Description("录入人")] [Nullable(true)] [DataLength(40)] public string Importor { get { return importor; } set { importor = value; } } /// /// 录入时间 /// [Description("录入时间")] [Nullable(true)] public string Importtime { get { return importtime; } set { importtime = value; } } /// /// 进,出钱账户剩余金额 /// [Description("账户剩余金额")] [Nullable(true)] [DataLength(22)] public decimal? Leavemoney { get { return leavemoney; } set { leavemoney = value; } } /// /// 确认时间 /// [Description("确认时间")] [Nullable(true)] public string Affrimdate { get { return affrimdate; } set { affrimdate = value; } } /// /// 确认人 /// [Description("确认人")] [Nullable(true)] [DataLength(40)] public string Affrimper { get { return affrimper; } set { affrimper = value; } } /// /// 业务片区 /// [Description("业务片区")] [Nullable(true)] [DataLength(40)] public string Secondaccount { get { return secondaccount; } set { secondaccount = value; } } /// /// 进款去向,0默认1制造2集团 /// [Description("进款去向,0默认1制造2集团")] [Nullable(true)] [DataLength(1)] public string MoneyDeliver { get { return moneyDeliver; } set { moneyDeliver = value; } } /// /// 钢贸同步给制造or集团回款时的单位 /// [Description("钢贸同步给制造or集团回款时的单位")] [Nullable(true)] [DataLength(40)] public string Prebuyercode { get { return prebuyercode; } set { prebuyercode = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] [DataLength(8)] public string InvoiceMonth { get { return invoiceMonth; } set { invoiceMonth = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] [DataLength(1)] public string InvoiceSts { get { return invoiceSts; } set { invoiceSts = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(200)] public string Orderno { get { return orderno; } set { orderno = value; } } } }