Grp_DayOtherPrice.cs 552 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 三公费用其他费用表
  10. /// </summary>
  11. public class Grp_DayOtherPrice:EntityBase
  12. {
  13. public int Diid { get; set; }
  14. public int SetDataId { get; set; }
  15. public int Index { get; set; }
  16. public decimal Cost { get; set; }
  17. public int Currency { get; set; }
  18. public decimal SubTotal { get; set; }
  19. }
  20. }