1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
- [SugarTable("Grp_InsuranceCost")]
- public class Grp_InsuranceCost: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string GName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal RechargeCost { get; set; }
- }
- }
|