Commit 8753ca32 authored by ZWT's avatar ZWT

feat(零碳): 长庆

1.添加easy excel配置,增加转换器,增加全局excel导出样式,增加场站下拉选解析器;
2.开发光伏电站模板导出接口,增加模板导出类,并完成接口冒烟测试及接口文档;
3.间开制度管理模块新增设为基础制度开关接口,添加线上接口文档并完成接口冒烟测试;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 3fd89341
package pps.core.system.service.data.iam;
public class GetIamOutput {
private String code; //
private String access_token; //
private Integer expires_in; //
private String refresh_token; //
private String result; //
private String error; //
private String error_description; //
private String iamLoginUrl;
private String passport;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String access_token) {
this.access_token = access_token;
}
public Integer getExpires_in() {
return expires_in;
}
public void setExpires_in(Integer expires_in) {
this.expires_in = expires_in;
}
public String getRefresh_token() {
return refresh_token;
}
public void setRefresh_token(String refresh_token) {
this.refresh_token = refresh_token;
}
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
public String getError_description() {
return error_description;
}
public void setError_description(String error_description) {
this.error_description = error_description;
}
public String getIamLoginUrl() {
return iamLoginUrl;
}
public void setIamLoginUrl(String iamLoginUrl) {
this.iamLoginUrl = iamLoginUrl;
}
public String getPassport() {
return passport;
}
public void setPassport(String passport) {
this.passport = passport;
}
}
package pps.core.system.service.data.sys_area;
public class CreateSysAreaOutput {
private Integer id;
private String name;
private Integer parentId;
private Integer lev;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getLev() {
return this.lev;
}
public void setLev(Integer value) {
this.lev = value;
}
}
package pps.core.system.service.data.sys_area;
public class DeleteSysAreaOutput {
private Integer id;
private String name;
private Integer parentId;
private Integer lev;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getLev() {
return this.lev;
}
public void setLev(Integer value) {
this.lev = value;
}
}
package pps.core.system.service.data.sys_area;
public class DynamicQuerySysAreaInput {
private Integer id;
private String name;
private Integer parentId;
private Integer lev;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getLev() {
return this.lev;
}
public void setLev(Integer value) {
this.lev = value;
}
}
package pps.core.system.service.data.sys_area;
public class DynamicQuerySysAreaOutput {
private Integer id;
private String name;
private Integer parentId;
private Integer lev;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getLev() {
return this.lev;
}
public void setLev(Integer value) {
this.lev = value;
}
}
package pps.core.system.service.data.sys_area;
public class DynamicQuerySysAreaViewOutput {
private Integer id;
private String name;
private Integer parentId;
private Integer lev;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getLev() {
return this.lev;
}
public void setLev(Integer value) {
this.lev = value;
}
}
package pps.core.system.service.data.sys_area;
public class UpdateSysAreaOutput {
private Integer id;
private String name;
private Integer parentId;
private Integer lev;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getLev() {
return this.lev;
}
public void setLev(Integer value) {
this.lev = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class CreateSysAuthOuScopeOutput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
public class DeleteSysAuthOuScopeInput {
@XText("范围授权id(主键)")
private String id;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class DynamicQuerySysAuthOuScopeInput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class DynamicQuerySysAuthOuScopeOutput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class DynamicQuerySysAuthOuScopeViewOutput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
public class GetSysAuthOuScopeInput {
@XText("范围授权id(主键)")
private String id;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class GetSysAuthOuScopeOutput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class GetSysAuthOuScopeViewInput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class GetSysAuthOuScopeViewOutput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import xstartup.base.data.XPageInput;
import java.util.Date;
public class QuerySysAuthOuScopeInput extends XPageInput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import xstartup.base.data.XPageInput;
import java.util.Date;
public class QuerySysAuthOuScopeOutput extends XPageInput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class UpdateSysAuthOuScopeInput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_auth_ou_scope;
import xstartup.annotation.XText;
import java.util.Date;
public class UpdateSysAuthOuScopeOutput {
@XText("范围授权id(主键)")
private String id;
@XText("被许可组织机构ID")
private String ouId;
@XText("用户id")
private String userId;
@XText("用户组id")
private String userGroupId;
@XText("菜单ID")
private String menuId;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String value) {
this.userId = value;
}
public String getUserGroupId() {
return this.userGroupId;
}
public void setUserGroupId(String value) {
this.userGroupId = value;
}
public String getMenuId() {
return this.menuId;
}
public void setMenuId(String value) {
this.menuId = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class CreateSysBaseInfoSysncConfigOutput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class DeleteSysBaseInfoSysncConfigOutput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class DynamicQuerySysBaseInfoSysncConfigInput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class DynamicQuerySysBaseInfoSysncConfigOutput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class DynamicQuerySysBaseInfoSysncConfigViewOutput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class GetSysBaseInfoSysncConfigViewInput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class GetSysBaseInfoSysncConfigViewOutput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
import xstartup.base.data.XPageInput;
public class QuerySysBaseInfoSysncConfigViewInput extends XPageInput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
import xstartup.base.data.XPageInput;
public class QuerySysBaseInfoSysncConfigViewOutput extends XPageInput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_base_info_sysnc_config;
import xstartup.annotation.XText;
public class UpdateSysBaseInfoSysncConfigOutput {
@XText("主键")
private String id;
@XText("基础表表名")
private String tableName;
@XText("目标库")
private String targetDb;
@XText("创建时间字段")
private String createTimeField;
@XText("修改时间字段")
private String modifyTimeField;
@XText("是否启用(0:否,1:是)")
private Integer isEnable;
@XText("备注")
private String remark;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("是否全量同步(0否,1:是)- 请慎重操作,大表不建议打开")
private Integer isFullSync;
public Integer getIsFullSync() {
return isFullSync;
}
public void setIsFullSync(Integer isFullSync) {
this.isFullSync = isFullSync;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getTargetDb() {
return this.targetDb;
}
public void setTargetDb(String value) {
this.targetDb = value;
}
public String getCreateTimeField() {
return this.createTimeField;
}
public void setCreateTimeField(String value) {
this.createTimeField = value;
}
public String getModifyTimeField() {
return this.modifyTimeField;
}
public void setModifyTimeField(String value) {
this.modifyTimeField = value;
}
public Integer getIsEnable() {
return this.isEnable;
}
public void setIsEnable(Integer value) {
this.isEnable = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.system.service.data.sys_dictionary;
import xstartup.annotation.XText;
import java.util.Date;
public class CreateSysDictionaryOutput {
@XText("主键")
private String id;
@XText("父级ID")
private String parentSysDictionaryId;
@XText("字典编码、全局唯一")
private String code;
@XText("名称")
private String dicName;
@XText("缩写")
private String shortName;
@XText("备注")
private String remark;
@XText("排序")
private Integer sort;
@XText("层级")
private Integer levels;
@XText("是否默认值")
private Integer beDefault;
@XText("是否含有下级")
private Integer beHasChildren;
@XText("0为系统字典,1应用字典")
private Integer dicType;
@XText("生效时间")
private Date effectTime;
@XText("失效时间")
private Date endTime;
@XText("创建人名称")
private String createName;
@XText("创建时间")
private Date createTime;
@XText("修改人名称")
private String modifyName;
@XText("修改时间")
private Date modifyTime;
@XText("父级编码")
private String parentSysDictionaryCode;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getParentSysDictionaryId() {
return this.parentSysDictionaryId;
}
public void setParentSysDictionaryId(String value) {
this.parentSysDictionaryId = value;
}
public String getCode() {
return this.code;
}
public void setCode(String value) {
this.code = value;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String value) {
this.dicName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getLevels() {
return this.levels;
}
public void setLevels(Integer value) {
this.levels = value;
}
public Integer getBeDefault() {
return this.beDefault;
}
public void setBeDefault(Integer value) {
this.beDefault = value;
}
public Integer getBeHasChildren() {
return this.beHasChildren;
}
public void setBeHasChildren(Integer value) {
this.beHasChildren = value;
}
public Integer getDicType() {
return this.dicType;
}
public void setDicType(Integer value) {
this.dicType = value;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String value) {
this.modifyName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getParentSysDictionaryCode() {
return this.parentSysDictionaryCode;
}
public void setParentSysDictionaryCode(String value) {
this.parentSysDictionaryCode = value;
}
}
package pps.core.system.service.data.sys_dictionary;
import xstartup.annotation.XText;
import java.util.Date;
public class DeleteSysDictionaryOutput {
@XText("主键")
private String id;
@XText("父级ID")
private String parentSysDictionaryId;
@XText("字典编码、全局唯一")
private String code;
@XText("名称")
private String dicName;
@XText("缩写")
private String shortName;
@XText("备注")
private String remark;
@XText("排序")
private Integer sort;
@XText("层级")
private Integer levels;
@XText("是否默认值")
private Integer beDefault;
@XText("是否含有下级")
private Integer beHasChildren;
@XText("0为系统字典,1应用字典")
private Integer dicType;
@XText("生效时间")
private Date effectTime;
@XText("失效时间")
private Date endTime;
@XText("创建人名称")
private String createName;
@XText("创建时间")
private Date createTime;
@XText("修改人名称")
private String modifyName;
@XText("修改时间")
private Date modifyTime;
@XText("父级编码")
private String parentSysDictionaryCode;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getParentSysDictionaryId() {
return this.parentSysDictionaryId;
}
public void setParentSysDictionaryId(String value) {
this.parentSysDictionaryId = value;
}
public String getCode() {
return this.code;
}
public void setCode(String value) {
this.code = value;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String value) {
this.dicName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getLevels() {
return this.levels;
}
public void setLevels(Integer value) {
this.levels = value;
}
public Integer getBeDefault() {
return this.beDefault;
}
public void setBeDefault(Integer value) {
this.beDefault = value;
}
public Integer getBeHasChildren() {
return this.beHasChildren;
}
public void setBeHasChildren(Integer value) {
this.beHasChildren = value;
}
public Integer getDicType() {
return this.dicType;
}
public void setDicType(Integer value) {
this.dicType = value;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String value) {
this.modifyName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getParentSysDictionaryCode() {
return this.parentSysDictionaryCode;
}
public void setParentSysDictionaryCode(String value) {
this.parentSysDictionaryCode = value;
}
}
package pps.core.system.service.data.sys_dictionary;
import xstartup.annotation.XText;
import java.util.Date;
public class DynamicQuerySysDictionaryInput {
@XText("主键")
private String id;
@XText("父级ID")
private String parentSysDictionaryId;
@XText("字典编码、全局唯一")
private String code;
@XText("名称")
private String dicName;
@XText("缩写")
private String shortName;
@XText("备注")
private String remark;
@XText("排序")
private Integer sort;
@XText("层级")
private Integer levels;
@XText("是否默认值")
private Integer beDefault;
@XText("是否含有下级")
private Integer beHasChildren;
@XText("0为系统字典,1应用字典")
private Integer dicType;
@XText("生效时间")
private Date effectTime;
@XText("失效时间")
private Date endTime;
@XText("创建人名称")
private String createName;
@XText("创建时间")
private Date createTime;
@XText("修改人名称")
private String modifyName;
@XText("修改时间")
private Date modifyTime;
@XText("父级编码")
private String parentSysDictionaryCode;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getParentSysDictionaryId() {
return this.parentSysDictionaryId;
}
public void setParentSysDictionaryId(String value) {
this.parentSysDictionaryId = value;
}
public String getCode() {
return this.code;
}
public void setCode(String value) {
this.code = value;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String value) {
this.dicName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getLevels() {
return this.levels;
}
public void setLevels(Integer value) {
this.levels = value;
}
public Integer getBeDefault() {
return this.beDefault;
}
public void setBeDefault(Integer value) {
this.beDefault = value;
}
public Integer getBeHasChildren() {
return this.beHasChildren;
}
public void setBeHasChildren(Integer value) {
this.beHasChildren = value;
}
public Integer getDicType() {
return this.dicType;
}
public void setDicType(Integer value) {
this.dicType = value;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String value) {
this.modifyName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getParentSysDictionaryCode() {
return this.parentSysDictionaryCode;
}
public void setParentSysDictionaryCode(String value) {
this.parentSysDictionaryCode = value;
}
}
package pps.core.system.service.data.sys_dictionary;
import xstartup.annotation.XText;
import java.util.Date;
public class DynamicQuerySysDictionaryOutput {
@XText("主键")
private String id;
@XText("父级ID")
private String parentSysDictionaryId;
@XText("字典编码、全局唯一")
private String code;
@XText("名称")
private String dicName;
@XText("缩写")
private String shortName;
@XText("备注")
private String remark;
@XText("排序")
private Integer sort;
@XText("层级")
private Integer levels;
@XText("是否默认值")
private Integer beDefault;
@XText("是否含有下级")
private Integer beHasChildren;
@XText("0为系统字典,1应用字典")
private Integer dicType;
@XText("生效时间")
private Date effectTime;
@XText("失效时间")
private Date endTime;
@XText("创建人名称")
private String createName;
@XText("创建时间")
private Date createTime;
@XText("修改人名称")
private String modifyName;
@XText("修改时间")
private Date modifyTime;
@XText("父级编码")
private String parentSysDictionaryCode;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getParentSysDictionaryId() {
return this.parentSysDictionaryId;
}
public void setParentSysDictionaryId(String value) {
this.parentSysDictionaryId = value;
}
public String getCode() {
return this.code;
}
public void setCode(String value) {
this.code = value;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String value) {
this.dicName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getLevels() {
return this.levels;
}
public void setLevels(Integer value) {
this.levels = value;
}
public Integer getBeDefault() {
return this.beDefault;
}
public void setBeDefault(Integer value) {
this.beDefault = value;
}
public Integer getBeHasChildren() {
return this.beHasChildren;
}
public void setBeHasChildren(Integer value) {
this.beHasChildren = value;
}
public Integer getDicType() {
return this.dicType;
}
public void setDicType(Integer value) {
this.dicType = value;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String value) {
this.modifyName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getParentSysDictionaryCode() {
return this.parentSysDictionaryCode;
}
public void setParentSysDictionaryCode(String value) {
this.parentSysDictionaryCode = value;
}
}
package pps.core.system.service.data.sys_dictionary;
import xstartup.annotation.XText;
import java.util.Date;
public class DynamicQuerySysDictionaryViewOutput {
@XText("主键")
private String id;
@XText("父级ID")
private String parentSysDictionaryId;
@XText("字典编码、全局唯一")
private String code;
@XText("名称")
private String dicName;
@XText("缩写")
private String shortName;
@XText("备注")
private String remark;
@XText("排序")
private Integer sort;
@XText("层级")
private Integer levels;
@XText("是否默认值")
private Integer beDefault;
@XText("是否含有下级")
private Integer beHasChildren;
@XText("0为系统字典,1应用字典")
private Integer dicType;
@XText("生效时间")
private Date effectTime;
@XText("失效时间")
private Date endTime;
@XText("创建人名称")
private String createName;
@XText("创建时间")
private Date createTime;
@XText("修改人名称")
private String modifyName;
@XText("修改时间")
private Date modifyTime;
@XText("父级编码")
private String parentSysDictionaryCode;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getParentSysDictionaryId() {
return this.parentSysDictionaryId;
}
public void setParentSysDictionaryId(String value) {
this.parentSysDictionaryId = value;
}
public String getCode() {
return this.code;
}
public void setCode(String value) {
this.code = value;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String value) {
this.dicName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getLevels() {
return this.levels;
}
public void setLevels(Integer value) {
this.levels = value;
}
public Integer getBeDefault() {
return this.beDefault;
}
public void setBeDefault(Integer value) {
this.beDefault = value;
}
public Integer getBeHasChildren() {
return this.beHasChildren;
}
public void setBeHasChildren(Integer value) {
this.beHasChildren = value;
}
public Integer getDicType() {
return this.dicType;
}
public void setDicType(Integer value) {
this.dicType = value;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String value) {
this.modifyName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getParentSysDictionaryCode() {
return this.parentSysDictionaryCode;
}
public void setParentSysDictionaryCode(String value) {
this.parentSysDictionaryCode = value;
}
}
package pps.core.system.service.data.sys_dictionary;
import xstartup.annotation.XText;
import java.util.Date;
public class UpdateSysDictionaryOutput {
@XText("主键")
private String id;
@XText("父级ID")
private String parentSysDictionaryId;
@XText("字典编码、全局唯一")
private String code;
@XText("名称")
private String dicName;
@XText("缩写")
private String shortName;
@XText("备注")
private String remark;
@XText("排序")
private Integer sort;
@XText("层级")
private Integer levels;
@XText("是否默认值")
private Integer beDefault;
@XText("是否含有下级")
private Integer beHasChildren;
@XText("0为系统字典,1应用字典")
private Integer dicType;
@XText("生效时间")
private Date effectTime;
@XText("失效时间")
private Date endTime;
@XText("创建人名称")
private String createName;
@XText("创建时间")
private Date createTime;
@XText("修改人名称")
private String modifyName;
@XText("修改时间")
private Date modifyTime;
@XText("父级编码")
private String parentSysDictionaryCode;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getParentSysDictionaryId() {
return this.parentSysDictionaryId;
}
public void setParentSysDictionaryId(String value) {
this.parentSysDictionaryId = value;
}
public String getCode() {
return this.code;
}
public void setCode(String value) {
this.code = value;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String value) {
this.dicName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getLevels() {
return this.levels;
}
public void setLevels(Integer value) {
this.levels = value;
}
public Integer getBeDefault() {
return this.beDefault;
}
public void setBeDefault(Integer value) {
this.beDefault = value;
}
public Integer getBeHasChildren() {
return this.beHasChildren;
}
public void setBeHasChildren(Integer value) {
this.beHasChildren = value;
}
public Integer getDicType() {
return this.dicType;
}
public void setDicType(Integer value) {
this.dicType = value;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String value) {
this.modifyName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getParentSysDictionaryCode() {
return this.parentSysDictionaryCode;
}
public void setParentSysDictionaryCode(String value) {
this.parentSysDictionaryCode = value;
}
}
package pps.core.system.service.data.sys_login;
/**
* @author lixueyan
* @date 2023/5/9 0009 10:01
*/
public class GetSysInfoInput {
private String mask;
public String getMask() {
return mask;
}
public void setMask(String mask) {
this.mask = mask;
}
}
package pps.core.system.service.data.sys_login;
import xstartup.annotation.XText;
/**
* @author lixueyan
* @date 2023/5/9 0009 10:01
*/
public class GetSysInfoOutput {
@XText("系统环境- dev、uat、test、prod")
private String env;
public String getEnv() {
return env;
}
public void setEnv(String env) {
this.env = env;
}
}
package pps.core.system.service.data.sys_login;
import jakarta.validation.constraints.NotBlank;
import xstartup.annotation.XText;
public class SendMessageInput {
@XText("手机号,多个逗号连接")
@NotBlank
private String phoneStr;
@XText("消息内容")
@NotBlank
private String smsContent;
@XText("消息校验码")
@NotBlank
private String code;
@XText("验证码标识")
@NotBlank
private String codeIden;
public String getPhoneStr() {
return phoneStr;
}
public void setPhoneStr(String phoneStr) {
this.phoneStr = phoneStr;
}
public String getSmsContent() {
return smsContent;
}
public void setSmsContent(String smsContent) {
this.smsContent = smsContent;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getCodeIden() {
return codeIden;
}
public void setCodeIden(String codeIden) {
this.codeIden = codeIden;
}
}
package pps.core.system.service.data.sys_login;
import xstartup.annotation.XText;
public class SmsCodeOutput {
@XText("发送短信校验码")
private String smsCode;
public String getSmsCode() {
return smsCode;
}
public void setSmsCode(String smsCode) {
this.smsCode = smsCode;
}
}
package pps.core.system.service.data.sys_menu;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.util.Date;
public class CreateSysMenuOutput {
@XText("菜单ID(主键)")
private String id;
@XText("菜单名称")
private String menuName;
@XText("父级菜单ID")
private String parentMenuId;
@XText("菜单是否可见:0->否;1->是;")
private Integer isVisiable;
@XText("是否需要范围授权:0->否;1->是;")
private Integer isHasScope;
@XText("排序")
private Integer sort;
@XText("是否包含子菜单:0->否;1->是;")
private Integer isHasChildren;
@XText("地址")
private String url;
@XText("是否提供给外部客户::0->否;1->是;默认0")
private Integer isExternal;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("菜单业务类型(字典id)")
private String menuType;
@XText("是否功能授权呈现:0->否;1->是;")
private Integer isHasAppear;
@XText("介质类型(字典)")
@TableField
private String mediaType;
@XText("菜单级别")
@TableField
private String level;
@XText("是否展开")
private boolean showChildren;
@XText("应用场景(0:PC, 1:APP)")
private Integer applyScene;
@XText("菜单图标")
private String menuIcon;
public String getMenuIcon() {
return menuIcon;
}
public void setMenuIcon(String menuIcon) {
this.menuIcon = menuIcon;
}
public Integer getApplyScene() {
return applyScene;
}
public void setApplyScene(Integer applyScene) {
this.applyScene = applyScene;
}
public boolean getShowChildren() {
return showChildren;
}
public void setShowChildren(boolean showChildren) {
this.showChildren = showChildren;
}
public String getMediaType() {
return mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
public String getMenuType() {
return menuType;
}
public void setMenuType(String menuType) {
this.menuType = menuType;
}
public Integer getIsHasAppear() {
return isHasAppear;
}
public void setIsHasAppear(Integer isHasAppear) {
this.isHasAppear = isHasAppear;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getMenuName() {
return this.menuName;
}
public void setMenuName(String value) {
this.menuName = value;
}
public String getParentMenuId() {
return this.parentMenuId;
}
public void setParentMenuId(String value) {
this.parentMenuId = value;
}
public Integer getIsVisiable() {
return this.isVisiable;
}
public void setIsVisiable(Integer value) {
this.isVisiable = value;
}
public Integer getIsHasScope() {
return this.isHasScope;
}
public void setIsHasScope(Integer value) {
this.isHasScope = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getIsHasChildren() {
return this.isHasChildren;
}
public void setIsHasChildren(Integer value) {
this.isHasChildren = value;
}
public String getUrl() {
return this.url;
}
public void setUrl(String value) {
this.url = value;
}
public Integer getIsExternal() {
return this.isExternal;
}
public void setIsExternal(Integer value) {
this.isExternal = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_menu;
import xstartup.annotation.XText;
import java.util.Date;
public class DeleteSysMenuOutput {
@XText("菜单ID(主键)")
private String id;
@XText("菜单名称")
private String menuName;
@XText("父级菜单ID")
private String parentMenuId;
@XText("菜单是否可见:0->否;1->是;")
private Integer isVisiable;
@XText("是否需要范围授权:0->否;1->是;")
private Integer isHasScope;
@XText("排序")
private Integer sort;
@XText("是否包含子菜单:0->否;1->是;")
private Integer isHasChildren;
@XText("地址")
private String url;
@XText("是否提供给外部客户::0->否;1->是;默认0")
private Integer isExternal;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("菜单业务类型(字典id)")
private String menuType;
@XText("是否功能授权呈现:0->否;1->是;")
private Integer isHasAppear;
@XText("是否展开")
private boolean showChildren;
public boolean getShowChildren() {
return showChildren;
}
public void setShowChildren(boolean showChildren) {
this.showChildren = showChildren;
}
public String getMenuType() {
return menuType;
}
public void setMenuType(String menuType) {
this.menuType = menuType;
}
public Integer getIsHasAppear() {
return isHasAppear;
}
public void setIsHasAppear(Integer isHasAppear) {
this.isHasAppear = isHasAppear;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getMenuName() {
return this.menuName;
}
public void setMenuName(String value) {
this.menuName = value;
}
public String getParentMenuId() {
return this.parentMenuId;
}
public void setParentMenuId(String value) {
this.parentMenuId = value;
}
public Integer getIsVisiable() {
return this.isVisiable;
}
public void setIsVisiable(Integer value) {
this.isVisiable = value;
}
public Integer getIsHasScope() {
return this.isHasScope;
}
public void setIsHasScope(Integer value) {
this.isHasScope = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getIsHasChildren() {
return this.isHasChildren;
}
public void setIsHasChildren(Integer value) {
this.isHasChildren = value;
}
public String getUrl() {
return this.url;
}
public void setUrl(String value) {
this.url = value;
}
public Integer getIsExternal() {
return this.isExternal;
}
public void setIsExternal(Integer value) {
this.isExternal = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.system.service.data.sys_send_message;
import xstartup.annotation.XText;
import java.util.List;
public class CreateSysSendMessageBatchInput {
@XText("短信列表")
private List<CreateSysSendMessageInput> listMessage;
public List<CreateSysSendMessageInput> getListMessage() {
return this.listMessage;
}
public void setListMessage(List<CreateSysSendMessageInput> value) {
this.listMessage = value;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment