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