2022-11-16 23:50:12 +08:00
|
|
|
package net.maku.system.vo;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import net.maku.framework.common.utils.DateUtils;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
2024-04-01 09:49:48 +08:00
|
|
|
import java.time.LocalDateTime;
|
2022-11-16 23:50:12 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 参数管理
|
|
|
|
|
*
|
|
|
|
|
* @author 阿沐 babamu@126.com
|
2023-02-21 16:44:04 +08:00
|
|
|
* <a href="https://maku.net">MAKU</a>
|
2022-11-16 23:50:12 +08:00
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@Schema(description = "参数管理")
|
|
|
|
|
public class SysParamsVO implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "id")
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "参数名称")
|
|
|
|
|
private String paramName;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "系统参数")
|
|
|
|
|
private Integer paramType;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "参数键")
|
|
|
|
|
private String paramKey;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "参数值")
|
|
|
|
|
private String paramValue;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "备注")
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "版本号")
|
|
|
|
|
private Integer version;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "删除标识")
|
|
|
|
|
private Integer deleted;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "创建者")
|
|
|
|
|
private Long creator;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "创建时间")
|
|
|
|
|
@JsonFormat(pattern = DateUtils.DATE_TIME_PATTERN)
|
2024-04-01 09:49:48 +08:00
|
|
|
private LocalDateTime createTime;
|
2022-11-16 23:50:12 +08:00
|
|
|
|
|
|
|
|
@Schema(description = "更新者")
|
|
|
|
|
private Long updater;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "更新时间")
|
|
|
|
|
@JsonFormat(pattern = DateUtils.DATE_TIME_PATTERN)
|
2024-04-01 09:49:48 +08:00
|
|
|
private LocalDateTime updateTime;
|
2022-11-16 23:50:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|