1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_AirInquiry")]
- public class Grp_AirInquiry:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string BlackCode { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Routing { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Carrier { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string FlightNo { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime DepartDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime DepartTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime ArrivalTime { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal FirstYPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal FirstCabinPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal BusinessYPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal BusinessCabinPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal YPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal CabinPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "dateTime")]
- public DateTime SearchDt { get; set; }
- }
- }
|