12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 日常费用付款申请详细类
- /// </summary>
- public class DailyFeePaymentContent
- {
- int id;
- /// <summary>
- /// 主键编号
- /// </summary>
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- int dFPID;
- /// <summary>
- /// 日常费用付款申请外键编号
- /// </summary>
- public int DFPID
- {
- get { return dFPID; }
- set { dFPID = value; }
- }
- string priceName;
- /// <summary>
- /// 费用项目
- /// </summary>
- public string PriceName
- {
- get { return priceName; }
- set { priceName = value; }
- }
- float count;
- /// <summary>
- /// 数量
- /// </summary>
- public float Count
- {
- get { return count; }
- set { count = value; }
- }
- float price;
- /// <summary>
- /// 单价
- /// </summary>
- public float Price
- {
- get { return price; }
- set { price = value; }
- }
- float itemSumPrice;
- /// <summary>
- /// 单价总金额
- /// </summary>
- public float ItemSumPrice
- {
- get { return itemSumPrice; }
- set { itemSumPrice = value; }
- }
- string remark;
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- }
- }
|