forked from rongchao/epmet-cloud-rizhao
5 changed files with 119 additions and 1 deletions
@ -0,0 +1,39 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.dto.result.OptionDTO; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
|
|||
@Data |
|||
public class EditIFormItemFormDTO implements Serializable { |
|||
/** |
|||
* 客户id |
|||
* 可空,为空时,修改所有客户符合条件的记录 |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* ic_form_item.id |
|||
*/ |
|||
private String formItemId; |
|||
|
|||
/** |
|||
* 组件名称对应的是ic_form_item.label |
|||
*/ |
|||
@NotBlank(message = "label不能为空") |
|||
private String label; |
|||
|
|||
/** |
|||
* 组件类型 |
|||
*/ |
|||
private String itemType; |
|||
|
|||
/** |
|||
* ic_form_item_options |
|||
*/ |
|||
private List<OptionDTO> options; |
|||
} |
Loading…
Reference in new issue