1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- public class Grp_CarTouristGuideGroundReservationsContent:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CTGGRId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int SId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string PriceContent { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Currency { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "费用日期", IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime? DatePrice { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "数量", IsNullable = true, ColumnDataType = "int")]
- public int Count { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "单位", IsNullable = true, ColumnDataType = "int")]
- public int Units { get; set; }
- }
- }
|