OrderGoodsVO.java 657 B

123456789101112131415161718192021222324252627
  1. package jnpf.model.order;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 订单信息
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021/3/15 8:46
  11. */
  12. @Data
  13. public class OrderGoodsVO {
  14. @Schema(description = "主键id")
  15. private String id;
  16. @Schema(description = "编码")
  17. private String code;
  18. @Schema(description = "内容")
  19. private String text;
  20. @Schema(description = "价格")
  21. private String specifications;
  22. @Schema(description = "单位")
  23. private String unit;
  24. @Schema(description = "价格")
  25. private String price;
  26. }