|
|
|
@ -4,9 +4,7 @@ import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.*; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import lombok.Data; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -31,6 +29,11 @@ public class DictType implements Serializable { |
|
|
|
*/ |
|
|
|
private String dictType; |
|
|
|
/** |
|
|
|
* 多选默认值(分号分隔) |
|
|
|
*/ |
|
|
|
@TableField("multi_default_value") |
|
|
|
private String multiDefaultValue; |
|
|
|
/** |
|
|
|
* 状态(Y正常,N停用) |
|
|
|
*/ |
|
|
|
private String status; |
|
|
|
|