12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_DeleClientNeeds")]
- public class Grp_DeleClientNeeds:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string HotelName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string HotelAddress { get; set; }
-
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string HotelStarRank { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string HotelNeedRemark { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string CabinName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string CabinNeedRemark { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CarType { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string CarNeedRemark { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string FoodNeedRemark { get; set; }
- }
- }
|