using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Dto.Order; /// /// 修改订单. /// [SuppressSniffer] public class OrderUpInput { /// /// 客户名称. /// public string? customerName { get; set; } /// /// 业务人员id. /// public string? salesmanId { get; set; } /// /// 订单日期. /// public DateTime? orderDate { get; set; } /// /// 订单编码. /// public string? orderCode { get; set; } /// /// 付款方式. /// public string? paymentMode { get; set; } /// /// 付款金额. /// public decimal? receivableMoney { get; set; } /// /// 定金比率. /// public decimal? earnestRate { get; set; } /// /// 预付定金. /// public decimal? prepayEarnest { get; set; } /// /// 运输方式. /// public string? transportMode { get; set; } /// /// 发货日期. /// public DateTime? deliveryDate { get; set; } /// /// 发货地址. /// public string? deliveryAddress { get; set; } /// /// 相关附近. /// public string? fileJson { get; set; } /// /// 客户ID. /// public string? customerId { get; set; } /// /// 业务人员名字. /// public string? salesmanName { get; set; } /// /// 备注. /// public string? description { get; set; } /// /// id. /// public string? id { get; set; } /// /// 状态. /// public string? status { get; set; } /// /// 紧急程度. /// public int? flowUrgent { get; set; } = 1; /// /// 商品列表. /// public List? goodsList { get; set; } /// /// 收款计划列表. /// public List? collectionPlanList { get; set; } } /// /// 商品列表. /// [SuppressSniffer] public class GoodsListUp : GoodsList { /// /// 主键id. /// public string? id { get; set; } /// /// 商品id. /// public string? orderId { get; set; } } /// /// 收款计划列表. /// [SuppressSniffer] public class CollectionPlanListUp : CollectionPlanList { /// /// 主键id. /// public string? id { get; set; } /// /// 商品id. /// public string? orderId { get; set; } }