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