using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 应收款项报表临时类 /// public class ReceivablesTemp { string no; /// /// 序号 /// public string No { get { return no; } set { no = value; } } string clientUnit; /// /// 客户单位 /// public string ClientUnit { get { return clientUnit; } set { clientUnit = value; } } string teamName; /// /// 团组名称 /// public string TeamName { get { return teamName; } set { teamName = value; } } string visitDate; /// /// 出访日期 /// public string VisitDate { get { return visitDate; } set { visitDate = value; } } string accounts; /// /// 应收 /// public string Accounts { get { return accounts; } set { accounts = value; } } string received; /// /// 已收 /// public string Received { get { return received; } set { received = value; } } string balance; /// /// 余款 /// public string Balance { get { return balance; } set { balance = value; } } string collection; /// /// 收款进度 /// public string Collection { get { return collection; } set { collection = value; } } } }