ProductGoodsPagination.java 599 B

1234567891011121314151617181920212223
  1. package jnpf.model.productgoods;
  2. import jnpf.base.Pagination;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. /**
  6. *
  7. * 产品商品
  8. * @版本: V3.1.0
  9. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  10. * @作者: JNPF开发平台组
  11. * @日期: 2021-07-10 15:57:50
  12. */
  13. @Data
  14. public class ProductGoodsPagination extends Pagination {
  15. @Schema(description ="分类主键")
  16. private String classifyId;
  17. @Schema(description ="产品编号")
  18. private String code;
  19. @Schema(description ="产品名称")
  20. private String fullName;
  21. }