| New file |
| | |
| | | package com.vincent.rsf.server.manager.controller.params; |
| | | |
| | | import com.vincent.rsf.server.manager.entity.QlyIsptItem; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @version 1.0 |
| | | * @title IsptItemsParams |
| | | * @description |
| | | * @create 2025/4/1 09:41 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "IsptItemsParams", description = "明细修改参数") |
| | | public class IsptItemsParams implements Serializable { |
| | | |
| | | @ApiModelProperty("明细参数") |
| | | private List<QlyIsptItem> isptItem; |
| | | |
| | | @ApiModelProperty("类型:1:合格, 2:不合格, 0: 其它(默认)") |
| | | private String type; |
| | | } |