38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
|
|
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
|
||
|
|
{
|
||
|
|
[ModelBindControl("txtid")]
|
||
|
|
public int id{set;get;}
|
||
|
|
[ModelBindControl("txtcustomername")]
|
||
|
|
public string customername{set;get;}
|
||
|
|
[ModelBindControl("txtcustomertype")]
|
||
|
|
public int customertype{set;get;}
|
||
|
|
[ModelBindControl("txtcontactuser")]
|
||
|
|
public int contactuser{set;get;}
|
||
|
|
[ModelBindControl("txtaddress")]
|
||
|
|
public string address{set;get;}
|
||
|
|
[ModelBindControl("txtstartreceipt")]
|
||
|
|
public decimal startreceipt{set;get;}
|
||
|
|
[ModelBindControl("txtcustomercode")]
|
||
|
|
public string customercode{set;get;}
|
||
|
|
[ModelBindControl("txttotalreceivables")]
|
||
|
|
public decimal totalreceivables{set;get;}
|
||
|
|
[ModelBindControl("txttotalamountsettled")]
|
||
|
|
public decimal totalamountsettled{set;get;}
|
||
|
|
[ModelBindControl("txttotaloutstandingamount")]
|
||
|
|
public decimal totaloutstandingamount{set;get;}
|
||
|
|
[ModelBindControl("txtremark")]
|
||
|
|
public string remark{set;get;}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|