package org.sxkj.resource.param;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
public class AttachPageParam {
|
|
@ApiModelProperty(value = "id")
|
private Long id;
|
|
@ApiModelProperty(value = "附件类型: 1=巡查类文档,2=巡检类文档,3=安保类文档,4=文旅类文档,5=采集数据类文档")
|
private List<List<String>> resultType;
|
/**
|
* 附件原名
|
*/
|
@ApiModelProperty(value = "附件原名")
|
private String nickName;
|
|
|
@ApiModelProperty(value = "部门集合",hidden = true)
|
private List<Long> deptList;
|
}
|