1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Resource
- {
-
-
-
- [SugarTable("Air_TicketBlackCode")]
- public class Air_TicketBlackCode:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]
- public string LeaveCode { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]
- public string BlackCode { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]
- public string ReturnCode { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string NowPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal BCPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal ECPrice { get; set; }
-
-
-
- public decimal FCPrice { get; set; }
-
-
-
- public decimal FCNowPrice { get; set; }
-
-
-
- public string Title { get; set; }
- }
- }
|