| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OASystem.Domain.Entities.Resource{    /// <summary>    /// 机票黑屏代码    /// </summary>    [SugarTable("Air_TicketBlackCode")]    public class Air_TicketBlackCode:EntityBase    {        /// <summary>        ///  团组Id        /// </summary>        [SugarColumn(IsNullable =true,ColumnDataType ="int")]        public int DiId { get; set; }        /// <summary>        ///   黑屏代码        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]        public string LeaveCode { get; set; }        /// <summary>        ///   黑屏代码        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]        public string BlackCode { get; set; }        /// <summary>        ///   黑屏代码        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]        public string ReturnCode { get; set; }        /// <summary>        /// 经济舱现价        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]        public string Price { get; set; }        /// <summary>        /// 公务舱现价        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]        public string NowPrice { get; set; }        /// <summary>        /// 公务舱全价        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]        public decimal BCPrice { get; set; }        /// <summary>        ///经济舱全价        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]        public decimal ECPrice { get; set; }        /// <summary>        /// 头等舱全价        /// </summary>        public decimal FCPrice { get; set; }        /// <summary>        /// 头等舱现价        /// </summary>        public decimal FCNowPrice { get; set; }        /// <summary>        /// 行程代码标题        /// </summary>        public string Title { get; set; }    }}
 |