using JNPF.DependencyInjection; using JNPF.Extend.Entitys.Model; namespace JNPF.Extend.Entitys.Dto.Order; /// /// 获取/查看订单信息. /// [SuppressSniffer] public class OrderInfoOutput { /// /// 创建时间. /// public DateTime? creatorTime { get; set; } /// /// 创建人. /// public string? creatorUserId { get; set; } /// /// 客户id. /// public string? customerId { get; set; } /// /// 客户名. /// public string? customerName { get; set; } /// /// 交易地点. /// public string? deliveryAddress { get; set; } /// /// 交易时间. /// public DateTime? deliveryDate { get; set; } /// /// 备注. /// public string? description { get; set; } /// /// 定金比率. /// public string? earnestRate { get; set; } /// /// 状态. /// public int? enabledMark { get; set; } /// /// 相关附件. /// public string? fileJson { get; set; } /// /// id. /// public string? id { get; set; } /// /// 修改时间. /// public DateTime? lastModifyTime { get; set; } /// /// 修改人. /// public string? lastModifyUserId { get; set; } /// /// 订单编码. /// public string? orderCode { get; set; } /// /// 订单日期. /// public DateTime? orderDate { get; set; } /// /// 付款方式. /// public string? paymentMode { get; set; } /// /// 预付定金. /// public string? prepayEarnest { get; set; } /// /// 付款金额. /// public decimal? receivableMoney { get; set; } /// /// 业务人id. /// public string? salesmanId { get; set; } /// /// 业务人名. /// public string? salesmanName { get; set; } /// /// 运输方式. /// public string? transportMode { get; set; } /// /// 订单商品. /// public List? goodsList { get; set; } /// /// 收款计划. /// public List? collectionPlanList { get; set; } }