批量下载技术监督反馈文件
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.njcn.process.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FileParam {
|
||||
@ApiModelProperty(value = "技术监督监测点记录id集合", required = true)
|
||||
@NotNull(message = "技术监督监测点记录id集合不能为空")
|
||||
private List<String> ids;
|
||||
@ApiModelProperty(value = "下载的单据类型:1 反馈单,2 测试报告,4 整改通知反馈单", required = true)
|
||||
@NotNull(message = "下载的单据类型不能为空")
|
||||
private Integer ticketType;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user