ProductEntryMdoel.java 740 B

123456789101112131415161718192021222324252627
  1. package jnpf.model.productEntry;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * Product模型
  7. * @版本: V3.1.0
  8. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * @作者: JNPF开发平台组
  10. * @日期: 2021-07-10 10:40:59
  11. */
  12. @Data
  13. public class ProductEntryMdoel {
  14. @Schema(description ="产品规格")
  15. private String productSpecification;
  16. @Schema(description ="数量")
  17. private String qty;
  18. @Schema(description ="单价")
  19. private String money;
  20. @Schema(description ="折后单价")
  21. private String price;
  22. @Schema(description ="单位")
  23. private String util;
  24. @Schema(description ="控制方式")
  25. private String commandType;
  26. }