using System.Text.RegularExpressions; namespace OASystem.Domain.Entities.Groups; /// /// 机票附加服务费用 /// [SugarTable("Grp_AirAdditionServices")] public class Grp_AirAdditionServices: EntityBase { /// /// Res表Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ResId { get; set; } /// /// Sys_SetDataId(服务类型) /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SysTypeId { get; set; } /// /// 出行人Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ClientId { get; set; } /// /// 票号(TicketCode) /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string TicketCode { get; set; } /// /// 附加服务费用 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Amount { get; set; } /// /// 附加服务费用说明 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string PriceDescription { get; set; } }