| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "检测项查询分页query") |
| | | public class TQaTestItemQuery extends BasePage { |
| | | |
| | | @ApiModelProperty(value = "项目组名称") |
| | | private String teamName; |
| | | |
| | | @ApiModelProperty(value = "检测项名称") |
| | | private String itemName; |
| | |
| | | |
| | | @ApiModelProperty(value = "状态 -1=草稿箱 1=已提交 2=待评定 3=已评定") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "项目组id集合 前端忽略") |
| | | private List<String> teamIds; |
| | | |
| | | @ApiModelProperty(value = "组名称") |
| | | private String teamName; |
| | | } |