1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Resource
- {
-
-
-
- public class Res_ScenicSpotInfo:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Country { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string City { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string ScenicSpot { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string ScenicSpotDetail { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal Rate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
- public string Currency { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string Address { get; set; }
- }
- }
|