cb96abf2e87b4de80aed11b420ea8d747218ff8b.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.Priv;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * Created by user on 2018/6/6.
  8. */
  9. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  10. public class PrivDto extends Priv implements Serializable {
  11. private String parentName;
  12. private String flagLeafCn;
  13. private String roleId;
  14. private boolean checked;
  15. //归属系统
  16. @ApiModelProperty(value = "归属系统 DC_PC/DC_APP", notes = "归属系统")
  17. private String ownerSystem;
  18. //样例:菜单是sys:user、按钮为user:add、表单控件为user:basic(页面:区域标识(div/table/控件等))
  19. @ApiModelProperty(value = "(长度:256,可为空:Y)", notes = "")
  20. private String code;
  21. public String getParentName() {
  22. return parentName;
  23. }
  24. public void setParentName(String parentName) {
  25. this.parentName = parentName;
  26. }
  27. public String getFlagLeafCn() {
  28. return flagLeafCn;
  29. }
  30. public void setFlagLeafCn(String flagLeafCn) {
  31. this.flagLeafCn = flagLeafCn;
  32. }
  33. public String getRoleId() {
  34. return roleId;
  35. }
  36. public void setRoleId(String roleId) {
  37. this.roleId = roleId;
  38. }
  39. public boolean isChecked() {
  40. return checked;
  41. }
  42. public void setChecked(boolean checked) {
  43. this.checked = checked;
  44. }
  45. }