DailyFeePaymentContent.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. /// 日常费用付款申请详细类
  9. /// </summary>
  10. public class DailyFeePaymentContent
  11. {
  12. int id;
  13. /// <summary>
  14. /// 主键编号
  15. /// </summary>
  16. public int Id
  17. {
  18. get { return id; }
  19. set { id = value; }
  20. }
  21. int dFPID;
  22. /// <summary>
  23. /// 日常费用付款申请外键编号
  24. /// </summary>
  25. public int DFPID
  26. {
  27. get { return dFPID; }
  28. set { dFPID = value; }
  29. }
  30. string priceName;
  31. /// <summary>
  32. /// 费用项目
  33. /// </summary>
  34. public string PriceName
  35. {
  36. get { return priceName; }
  37. set { priceName = value; }
  38. }
  39. float count;
  40. /// <summary>
  41. /// 数量
  42. /// </summary>
  43. public float Count
  44. {
  45. get { return count; }
  46. set { count = value; }
  47. }
  48. float price;
  49. /// <summary>
  50. /// 单价
  51. /// </summary>
  52. public float Price
  53. {
  54. get { return price; }
  55. set { price = value; }
  56. }
  57. float itemSumPrice;
  58. /// <summary>
  59. /// 单价总金额
  60. /// </summary>
  61. public float ItemSumPrice
  62. {
  63. get { return itemSumPrice; }
  64. set { itemSumPrice = value; }
  65. }
  66. string remark;
  67. /// <summary>
  68. /// 备注
  69. /// </summary>
  70. public string Remark
  71. {
  72. get { return remark; }
  73. set { remark = value; }
  74. }
  75. }
  76. }