WinFormTools/WinformGeneralDeveloperFrame/Entity/customerInfo.cs

53 lines
1.6 KiB
C#
Raw Normal View History

using WinformGeneralDeveloperFrame.Commons;
namespace MES.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("customer")]
public partial class customerInfo
{
2021-05-29 14:11:44 +08:00
///id
[ModelBindControl("txtid")]
public int id{set;get;}
2021-05-31 18:22:37 +08:00
///客户名称phonenumber
[ModelBindControl("txtcustomername")]
public string customername{set;get;}
2021-05-29 14:11:44 +08:00
///客户类别
[ModelBindControl("txtcustomertype")]
public int customertype{set;get;}
2021-05-29 14:11:44 +08:00
///联系人
[ModelBindControl("txtcontactuser")]
public int contactuser{set;get;}
2021-05-29 14:11:44 +08:00
///客户地址
[ModelBindControl("txtaddress")]
2021-05-31 18:22:37 +08:00
public string address{set;get;}
2021-05-31 18:22:37 +08:00
///电话phonenumber
[ModelBindControl("txtphonenumber")]
public string phonenumber { set; get; }
///期初应收款
[ModelBindControl("txtstartreceipt")]
public decimal startreceipt{set;get;}
2021-05-29 14:11:44 +08:00
///客户编号
[ModelBindControl("txtcustomercode")]
public string customercode{set;get;}
2021-05-29 14:11:44 +08:00
///应收款总额
[ModelBindControl("txttotalreceivables")]
public decimal totalreceivables{set;get;}
2021-05-29 14:11:44 +08:00
///已结款总额
[ModelBindControl("txttotalamountsettled")]
public decimal totalamountsettled{set;get;}
2021-05-29 14:11:44 +08:00
///未结款总额
[ModelBindControl("txttotaloutstandingamount")]
public decimal totaloutstandingamount{set;get;}
2021-05-29 14:11:44 +08:00
///备注
[ModelBindControl("txtremark")]
public string remark{set;get;}
}
}