forked from rongchao/epmet-cloud-rizhao
3 changed files with 51 additions and 5 deletions
@ -0,0 +1,30 @@ |
|||
package com.epmet.dataaggre.dto.epmettduck.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @Description 问卷-数据分析-查看详情 |
|||
* @Author yinzuomei |
|||
* @Date 2021/9/22 1:29 下午 |
|||
*/ |
|||
@Data |
|||
public class ItemResDetailFormDTO extends ProjectKeyCommonDTO{ |
|||
|
|||
@NotBlank(message = "formItemId不能为空",groups = AddUserInternalGroup.class) |
|||
private String formItemId; |
|||
/** |
|||
* 表单项类型 |
|||
*/ |
|||
@NotBlank(message = "type不能为空",groups = AddUserInternalGroup.class) |
|||
private String type; |
|||
|
|||
|
|||
/** |
|||
* 09.22目前产品没要求分页 |
|||
*/ |
|||
private Integer pageNo; |
|||
private Integer pageSize; |
|||
} |
|||
|
Loading…
Reference in new issue