
9 changed files with 170 additions and 19 deletions
@ -0,0 +1,67 @@ |
|||
package com.yxt.anrui.terminal.api.base.common; |
|||
|
|||
import java.util.List; |
|||
|
|||
public class ItemEditTextInfoCommon { |
|||
|
|||
// 标题 如:身份证
|
|||
private String title; |
|||
// 类型 1(上传图片)
|
|||
private int type; |
|||
// 是否可空, 可不填 true
|
|||
private boolean nullAble; |
|||
// 保存
|
|||
private String key; |
|||
// 保存图片使用 type=1
|
|||
private List<String> filesPath; |
|||
// 保存文本使用
|
|||
private String text; |
|||
|
|||
public String getTitle() { |
|||
return title; |
|||
} |
|||
|
|||
public void setTitle(String title) { |
|||
this.title = title; |
|||
} |
|||
|
|||
public int getType() { |
|||
return type; |
|||
} |
|||
|
|||
public void setType(int type) { |
|||
this.type = type; |
|||
} |
|||
|
|||
public boolean isNullAble() { |
|||
return nullAble; |
|||
} |
|||
|
|||
public void setNullAble(boolean nullAble) { |
|||
this.nullAble = nullAble; |
|||
} |
|||
|
|||
public String getKey() { |
|||
return key; |
|||
} |
|||
|
|||
public void setKey(String key) { |
|||
this.key = key; |
|||
} |
|||
|
|||
public List<String> getFilesPath() { |
|||
return filesPath; |
|||
} |
|||
|
|||
public void setFilesPath(List<String> filesPath) { |
|||
this.filesPath = filesPath; |
|||
} |
|||
|
|||
public String getText() { |
|||
return text; |
|||
} |
|||
|
|||
public void setText(String text) { |
|||
this.text = text; |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
package com.yxt.anrui.terminal.api.risk.secondarysales; |
|||
|
|||
import com.yxt.anrui.terminal.api.base.common.ItemEditTextInfoCommon; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2024/1/29 |
|||
**/ |
|||
@Data |
|||
public class SecondSalesInitVo { |
|||
|
|||
private String title; |
|||
|
|||
private List<ItemEditTextInfoCommon> list; |
|||
} |
Loading…
Reference in new issue