You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
933B

  1. package com.example.webapi.dto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. /**
  7. * 品种信息查询条件DTO
  8. *
  9. * @author Your Name
  10. * @version 1.0.0
  11. */
  12. @Data
  13. @EqualsAndHashCode(callSuper = true)
  14. @ApiModel(description = "品种信息查询条件数据传输对象")
  15. public class MaterialInfoQueryDTO extends BasePageDTO {
  16. @ApiModelProperty(value = "品种编码", example = "M001", notes = "支持模糊查询")
  17. private String code; // 品种编码(模糊查询)
  18. @ApiModelProperty(value = "品种名称", example = "钢材", notes = "支持模糊查询")
  19. private String name; // 品种名称(模糊查询)
  20. @ApiModelProperty(value = "激活状态", example = "true", notes = "true=激活,false=未激活")
  21. private Boolean activate; // 激活状态
  22. }