|
@@ -0,0 +1,118 @@
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Text;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+
|
|
|
|
+namespace OASystem.Domain.Entities.Resource
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarTable("Res_LocalGuideData")]
|
|
|
|
+ public class Res_LocalGuideData : EntityBase
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
|
+ public string UnitArea { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
|
+ public string UnitName { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
|
+ public string Address { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
|
|
|
|
+ public string Contact { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
|
|
|
|
+ public string ContactTel { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
|
+ public string ContactEmail { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
|
|
|
|
+ public string ContactFax { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
|
|
|
|
+ public string OtherInfo { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int Score { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string SuitScore { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string ServeScore { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string TalkProScore { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string TimeScore { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string FitScore { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string StrainScore { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
|
|
|
|
+ public string LocalAndChineseScore { get; set; }
|
|
|
|
+ }
|
|
|
|
+}
|