ProductGoodsInfoVO.java 871 B

1234567891011121314151617181920212223242526272829303132
  1. package jnpf.model.productgoods;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * 产品商品
  7. * @版本: V3.1.0
  8. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * @作者: JNPF开发平台组
  10. * @日期: 2021-07-10 15:57:50
  11. */
  12. @Data
  13. public class ProductGoodsInfoVO{
  14. @Schema(description ="主键")
  15. private String id;
  16. @Schema(description ="分类主键")
  17. private String classifyId;
  18. @Schema(description ="产品编号")
  19. private String code;
  20. @Schema(description ="产品名称")
  21. private String fullName;
  22. @Schema(description ="产品规格")
  23. private String productSpecification;
  24. @Schema(description ="单价")
  25. private String money;
  26. @Schema(description ="金额")
  27. private String amount;
  28. @Schema(description ="库存数")
  29. private String qty;
  30. }