|
@@ -0,0 +1,61 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace OASystem.Domain.Entities.Resource
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarTable("Res_HotelData")]
|
|
|
+ public class Res_HotelData:EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ public string City { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ public string Name { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ public string Level { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ public string Address { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
|
|
|
+ public string Tel { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
+ public string Fax { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
+ public string Contact { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
|
|
|
+ public string ContactPhone { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
+ public string OtherInformation { get; set; }
|
|
|
+ }
|
|
|
+}
|