|
@@ -0,0 +1,102 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarTable("Grp_CarTouristGuideGroundReservations")]
|
|
|
+ public class Grp_CarTouristGuideGroundReservations : EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable =true,ColumnDataType ="int")]
|
|
|
+ public int DiId { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
+ public string Area { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
+ public string ServiceCompany { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ public string ServiceGuide { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
|
|
|
+ public string ServiceTel { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
+ public string BusName { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
+ public string BusDescription { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
|
|
|
+ public string BusTel { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
|
|
|
+ public string ServiceStartTime { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
|
|
|
+ public string ServiceEndTime { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
+ public string ServiceDescription { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
+ public decimal ServiceQuotedPrice { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int CId { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
+ public string QuotedPriceExplanation { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int OrbitalPrivateTransfer{get;set; }
|
|
|
+ }
|
|
|
+}
|