12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 应收款项报表类
- /// </summary>
- public class ViewDelegationInfoAndForeignReceivables
- {
- int dIID;
- /// <summary>
- /// 团组编号
- /// </summary>
- public int DIID
- {
- get { return dIID; }
- set { dIID = value; }
- }
- string teamName;
- /// <summary>
- /// 团队名称
- /// </summary>
- public string TeamName
- {
- get { return teamName; }
- set { teamName = value; }
- }
- string clientUnit;
- /// <summary>
- /// 客户单位
- /// </summary>
- public string ClientUnit
- {
- get { return clientUnit; }
- set { clientUnit = value; }
- }
- string visitDate;
- /// <summary>
- /// 出访时间
- /// </summary>
- public string VisitDate
- {
- get { return visitDate; }
- set { visitDate = value; }
- }
- }
- }
|