123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_EnterExitCostQuote", "团组-出入境费用报价表")]
- public class Grp_EnterExitCostQuote : EntityBase
- {
-
-
-
- [SugarColumn(ColumnName = "Name", ColumnDescription = "报价名称", IsNullable = true, ColumnDataType = "varchar(120)")]
- public string Name { get; set; }
-
-
-
- [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, ColumnDataType = "int")]
- public int GroupId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string? CurrencyRemark { get; set; }
- }
- }
|