123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_VisaProgress")]
- public class Grp_VisaProgress : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Country { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string GetData { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime GetDataTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string GetPassport { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime GetPassportTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string FillData { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime FillDataTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string SendVisa { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime SendVisaTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string SignOut { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime SignOutTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string SendBackPassport { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public string SendBackPassporTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Receiver { get; set; }
- }
-
-
-
-
- [SugarTable("Grp_VisaProgressCustomer")]
- public class Grp_VisaProgressCustomer : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CustomerId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = false, ColumnDataType = "varchar(50)")]
- public string CustomerName { get; set; }
-
-
-
- [SugarColumn(IsNullable = false, ColumnDataType = "varchar(50)")]
- public string Country { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = false, ColumnDataType = "int")]
- public int WorkStatus { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int LastOperatorId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
- public DateTime LastOperatorDt { get; set; }
- }
- [SugarTable("Grp_VisaProgressCustomerPicture")]
- public class Grp_VisaProgressCustomerPicture : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int VisaProgressCustomerId { get; set; }
-
-
-
- [SugarColumn(IsNullable = false, ColumnDataType = "varchar(100)")]
- public string PicName { get; set; }
-
-
-
- [SugarColumn(IsNullable = false, ColumnDataType = "nvarchar(200)")]
- public string PicPath { get; set; }
-
-
-
-
-
-
-
-
-
- [SugarColumn(IsNullable = false, ColumnDataType = "int")]
- public int PicType { get; set; }
- }
- }
|