123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_VisaInfo")]
- public class Grp_VisaInfo:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int DIId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
- public string VisaClient { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal VisaPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int VisaCurrency { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsThird { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PassengerType { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int VisaNumber { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int VisaFreeNumber { get; set; }
- }
- }
|