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.
|
|
|
/**
|
|
|
|
* 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.NotBlank;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import javax.validation.constraints.Null;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 参数管理
|
|
|
|
*
|
|
|
|
* @author Mark sunlightcs@gmail.com
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
public class SysParamsDTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
@Null(message="{id.null}", groups = AddGroup.class)
|
|
|
|
@NotNull(message="{id.require}", groups = UpdateGroup.class)
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
@NotBlank(message="{sysparams.paramcode.require}", groups = DefaultGroup.class)
|
|
|
|
private String paramCode;
|
|
|
|
|
|
|
|
@NotBlank(message="{sysparams.paramvalue.require}", groups = DefaultGroup.class)
|
|
|
|
private String paramValue;
|
|
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
|
|
|
private Date createDate;
|
|
|
|
|
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
|
|
|
private Date updateDate;
|
|
|
|
|
|
|
|
}
|