using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 已收款项类 /// public class ProceedsReceived { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } int dIID; /// /// 团组外键编号 /// public int DIID { get { return dIID; } set { dIID = value; } } string sectionTime; /// /// 到款时间 /// public string SectionTime { get { return sectionTime; } set { sectionTime = value; } } decimal price; /// /// 金额 /// public decimal Price { get { return price; } set { price = value; } } int currency; /// /// 币种 /// public int Currency { get { return currency; } set { currency = value; } } int receivablesType; /// /// 收款类型 /// public int ReceivablesType { get { return receivablesType; } set { receivablesType = value; } } string client; /// /// 收款单位 /// public string Client { get => client; set => client = value; } string remark; /// /// 收款进度或备注 /// public string Remark { get { return remark; } set { remark = value; } } int operators; /// /// 操作人 /// public int Operators { get { return operators; } set { operators = value; } } string operatorsDate; /// /// 操作时间 /// public string OperatorsDate { get { return operatorsDate; } set { operatorsDate = value; } } int isDel; /// /// 删除标识 /// public int IsDel { get { return isDel; } set { isDel = value; } } string fID; /// /// 应付项id /// public string FID { get { return fID; } set { fID = value; } } } }