12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
-
- [SugarTable("Grp_VisaFeeInfo")]
- public class Grp_VisaFeeInfo:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true ,ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsChecked { get; set; } = 0;
-
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int CountryVisaFeeId { get; set; }
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int OBType { get; set; }
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal AgencyFee { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal OtherFee { get; set; }
- }
- }
|