ProductInfoVO.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package jnpf.model.product;
  2. import jnpf.model.productEntry.ProductEntryInfoVO;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. import java.math.BigDecimal;
  6. import java.util.List;
  7. /**
  8. *
  9. * Product模型
  10. * @版本: V3.1.0
  11. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  12. * @作者: JNPF开发平台组
  13. * @日期: 2021-07-10 10:40:59
  14. */
  15. @Data
  16. public class ProductInfoVO{
  17. @Schema(description ="主键")
  18. private String id;
  19. @Schema(description ="订单编号")
  20. private String code;
  21. @Schema(description ="客户id")
  22. private String customerId;
  23. @Schema(description ="客户名称")
  24. private String customerName;
  25. @Schema(description ="审核人")
  26. private String auditName;
  27. @Schema(description ="审核日期")
  28. private Long auditDate;
  29. @Schema(description ="发货仓库")
  30. private String goodsWarehouse;
  31. @Schema(description ="发货通知时间")
  32. private Long goodsDate;
  33. @Schema(description ="发货通知人")
  34. private String goodsName;
  35. @Schema(description ="收款方式")
  36. private String gatheringType;
  37. @Schema(description ="业务员")
  38. private String business;
  39. @Schema(description ="送货地址")
  40. private String address;
  41. @Schema(description ="联系方式")
  42. private String contactTel;
  43. @Schema(description ="收货消息")
  44. private Integer harvestMsg;
  45. @Schema(description ="收货仓库")
  46. private String harvestWarehouse;
  47. @Schema(description ="代发客户")
  48. private String issuingName;
  49. @Schema(description ="让利金额")
  50. private BigDecimal partPrice;
  51. @Schema(description ="优惠金额")
  52. private BigDecimal reducedPrice;
  53. @Schema(description ="折后金额")
  54. private BigDecimal discountPrice;
  55. @Schema(description ="备注")
  56. private String description;
  57. @Schema(description ="子表数据")
  58. private List<ProductEntryInfoVO> productEntryList;
  59. }