package com.doumee.dao.system.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel("系统配置参数") public class SystemConfigVo { @ApiModelProperty(value = "主标题") private String title; @ApiModelProperty(value = "系统副标题") private String subtitle; }