123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- 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 = "nvarchar(1000)")]
- 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 = "nvarchar(1000)")]
- 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 = "nvarchar(1000)")]
- public string QuotedPriceExplanation { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int OrbitalPrivateTransfer{get;set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDescription = "选中的复选框", ColumnDataType = "nvarchar(1000)")]
- public string SelectCheck { get; set; }
-
-
-
- public int PriceType { get; set; }
-
-
-
- public string PriceName { get; set; }
-
-
-
- public int toCurr { get; set; }
-
-
-
- public decimal Rate { get; set; }
- }
- }
|