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