SalesOrderInfoVO.java 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package jnpf.model.salesorder;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import jakarta.validation.constraints.NotBlank;
  5. import jakarta.validation.constraints.NotNull;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. /**
  9. * 销售订单
  10. *
  11. * @author JNPF开发平台组
  12. * @version V3.1.0
  13. * @copyright 引迈信息技术有限公司
  14. * @date 2021/3/15 8:46
  15. */
  16. @Data
  17. public class SalesOrderInfoVO {
  18. @Schema(description = "明细")
  19. List<SalesOrderEntryEntityInfoModel> entryList;
  20. @Schema(description = "主键")
  21. private String id;
  22. @NotBlank(message = "流程主键不能为空")
  23. @Schema(description = "流程主键")
  24. private String flowId;
  25. @NotBlank(message = "流程标题不能为空")
  26. @Schema(description = "流程标题")
  27. private String flowTitle;
  28. @NotNull(message = "流程等级不能为空")
  29. @Schema(description = "流程等级")
  30. private Integer flowUrgent;
  31. @NotBlank(message = "流程单据不能为空")
  32. @Schema(description = "流程单据")
  33. private String billNo;
  34. @Schema(description = "业务人员")
  35. private String salesman;
  36. @NotBlank(message = "客户名称不能为空")
  37. @Schema(description = "客户名称")
  38. private String customerName;
  39. @Schema(description = "联系人")
  40. private String contacts;
  41. @Schema(description = "联系电话")
  42. private String contactPhone;
  43. @Schema(description = "客户地址")
  44. private String customerAddres;
  45. @Schema(description = "发票编码")
  46. private String ticketNum;
  47. @NotBlank(message = "开票日期不能为空")
  48. @Schema(description = "开票日期")
  49. private Long ticketDate;
  50. @Schema(description = "发票类型")
  51. private String invoiceType;
  52. @Schema(description = "付款方式")
  53. private String paymentMethod;
  54. @Schema(description = "付款金额")
  55. private BigDecimal paymentMoney;
  56. @Schema(description = "销售日期")
  57. private Long salesDate;
  58. @Schema(description = "相关附件")
  59. private String fileJson;
  60. @Schema(description = "描述")
  61. private String description;
  62. }