1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Resource
- {
-
-
-
- [SugarTable("Res_BasicInsuranceCost")]
- public class Res_BasicInsuranceCost : EntityBase
- {
-
-
-
- [SugarColumn(ColumnDescription = "申根国(0 否 1 是)", IsNullable = false, ColumnDataType = "int", DefaultValue = "0")]
- public int IsSchengen { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "国家名称", IsNullable = false, ColumnDataType = "varchar(100)")]
- public string CountryName { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "保险费用", IsNullable = false, ColumnDataType = "decimal(10,2)", DefaultValue = "0.00")]
- public decimal Cost { get; set; }
- }
- }
|