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