| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.Priv;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by user on 2018/6/6.
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class PrivDto extends Priv implements Serializable {
- private String parentName;
- private String flagLeafCn;
- private String roleId;
- private boolean checked;
- //归属系统
- @ApiModelProperty(value = "归属系统 DC_PC/DC_APP", notes = "归属系统")
- private String ownerSystem;
- //样例:菜单是sys:user、按钮为user:add、表单控件为user:basic(页面:区域标识(div/table/控件等))
- @ApiModelProperty(value = "(长度:256,可为空:Y)", notes = "")
- private String code;
- public String getParentName() {
- return parentName;
- }
- public void setParentName(String parentName) {
- this.parentName = parentName;
- }
- public String getFlagLeafCn() {
- return flagLeafCn;
- }
- public void setFlagLeafCn(String flagLeafCn) {
- this.flagLeafCn = flagLeafCn;
- }
- public String getRoleId() {
- return roleId;
- }
- public void setRoleId(String roleId) {
- this.roleId = roleId;
- }
- public boolean isChecked() {
- return checked;
- }
- public void setChecked(boolean checked) {
- this.checked = checked;
- }
- }
|