Grp_InsuranceCost.cs 646 B

1234567891011121314151617181920212223242526
  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. [SugarTable("Grp_InsuranceCost")]
  9. public class Grp_InsuranceCost: EntityBase
  10. {
  11. /// <summary>
  12. /// 保险名称
  13. /// </summary>
  14. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  15. public string GName { get; set; }
  16. /// <summary>
  17. /// 充值费用
  18. /// </summary>
  19. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
  20. public decimal RechargeCost { get; set; }
  21. }
  22. }