12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- public class Grp_TravelList: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Diid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Days { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
- public string Date { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
- public string WeekDay { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
- public string Traffic_First { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
- public string Traffic_Second { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(MAX)")]
- public string Trip { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Diffgroup { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Issel { get; set; }
- }
- }
|