3 changed files with 7 additions and 37 deletions
@ -1,37 +0,0 @@ |
|||||
|
|
||||
package com.elink.esua.epdc.dto.house; |
|
||||
|
|
||||
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
|
||||
import lombok.Data; |
|
||||
|
|
||||
import javax.validation.constraints.NotBlank; |
|
||||
import java.io.Serializable; |
|
||||
|
|
||||
/** |
|
||||
* 数据字典简要信息 |
|
||||
* |
|
||||
* @author yujintao |
|
||||
* @date 2019/7/15 09:29 |
|
||||
*/ |
|
||||
@Data |
|
||||
public class SysSimpleDictDTO implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = -4827806651372425347L; |
|
||||
|
|
||||
/** |
|
||||
* 字典名称 |
|
||||
*/ |
|
||||
@NotBlank(message = "{sysdict.name.require}", groups = DefaultGroup.class) |
|
||||
private String dictName; |
|
||||
|
|
||||
/** |
|
||||
* 字典值 |
|
||||
*/ |
|
||||
private String dictValue; |
|
||||
|
|
||||
/** |
|
||||
* 备注 |
|
||||
*/ |
|
||||
private String remark; |
|
||||
|
|
||||
} |
|
Loading…
Reference in new issue