using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 箱型报价返回实体 /// public class BusinessCtnPriceRes { /// /// 主键Id /// public long Id { get; set; } /// /// 业务Id /// public long BusinessId { get; set; } /// /// 箱型 /// public string Ctn { get; set; } /// /// 箱型Id /// public long CtnId { get; set; } /// /// 表现形式 /// public string CtnAll { get; set; } /// /// 箱量 /// public int CtnNum { get; set; } /// /// 报价 /// public int QuotePrice { get; set; } /// /// 指导价 /// public int GuidePrice { get; set; } /// /// 底价 /// public int FloorPrice { get; set; } } }