|
@@ -0,0 +1,180 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class Grp_CarGuides:EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Country { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string City { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string ServiceType { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string CarType { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Offer { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string CGCost { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string RuningTime { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string OvertimeFee { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string CGOvertimeFee { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Currency { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class Grp_GuidesInfo : EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Country { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string City { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string ServiceType { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string When { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Price { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string TranslationPrice { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string OvertimeFee { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Currency { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class Grp_CarInfo : EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Country { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string City { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string CarType { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string ServiceType { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string When { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Price { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Currency { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string OvertimeFee { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class Grp_ScenicSpotInfo : EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Country { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string City { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string ScenicSpot { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string ScenicSpotDetail { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public float Price { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Currency { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public float Rate { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public string Address { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|