| | |
| | | @ApiModelProperty(value= "状态 1: 正常 0: 禁用 ") |
| | | private Short status; |
| | | |
| | | private String memo; |
| | | |
| | | private String param; |
| | | |
| | | @TableField(exist = false) |
| | | private List<PdaResource> children; |
| | | |
| | | public PdaResource() {} |
| | | |
| | | public PdaResource(String code,String name,String title,Long resourceId,Short level,Integer sort,Short status) { |
| | | public PdaResource(String code,String name,String title,Long resourceId,Short level,Integer sort,Short status,String memo,String param) { |
| | | this.code = code; |
| | | this.name = name; |
| | | this.title = title; |
| | |
| | | this.level = level; |
| | | this.sort = sort; |
| | | this.status = status; |
| | | this.memo=memo; |
| | | this.param=param; |
| | | } |
| | | |
| | | // PdaResource pdaResource = new PdaResource( |