forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
*
|
|
* https://www.renren.io
|
|
*
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.dto;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import com.epmet.commons.tools.validator.group.AddGroup;
|
|
import com.epmet.commons.tools.validator.group.DefaultGroup;
|
|
import com.epmet.commons.tools.validator.group.UpdateGroup;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.Min;
|
|
import javax.validation.constraints.NotBlank;
|
|
import javax.validation.constraints.NotNull;
|
|
import javax.validation.constraints.Null;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 字典数据
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
*/
|
|
@Data
|
|
public class SysDictDataDTO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Null(message="{id.null}", groups = AddGroup.class)
|
|
@NotNull(message="{id.require}", groups = UpdateGroup.class)
|
|
private String id;
|
|
|
|
@NotNull(message="{sysdict.type.require}", groups = DefaultGroup.class)
|
|
private Long dictTypeId;
|
|
|
|
@NotBlank(message="{sysdict.label.require}", groups = DefaultGroup.class)
|
|
private String dictLabel;
|
|
|
|
private String dictValue;
|
|
|
|
private String dictPValue;
|
|
|
|
private String remark;
|
|
|
|
@Min(value = 0, message = "{sort.number}", groups = DefaultGroup.class)
|
|
private Integer sort;
|
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
|
private Date createdTime;
|
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
|
private Date updatedTime;
|
|
}
|
|
|