更改会员属性类型
parent
4fb82465b1
commit
a9ce44ba60
|
|
@ -43,7 +43,7 @@ public class AppUserDynamicController extends BaseController
|
||||||
/**
|
/**
|
||||||
* 查询App用户动态列表
|
* 查询App用户动态列表
|
||||||
*/
|
*/
|
||||||
@RequiresPermissions("app:dynamic:list")
|
// @RequiresPermissions("app:dynamic:list")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
@ApiOperation(value = "app用户动态列表", notes = "app用户动态列表", httpMethod = "GET")
|
@ApiOperation(value = "app用户动态列表", notes = "app用户动态列表", httpMethod = "GET")
|
||||||
public TableDataInfo list(AppUserDynamic appUserDynamic)
|
public TableDataInfo list(AppUserDynamic appUserDynamic)
|
||||||
|
|
@ -53,7 +53,7 @@ public class AppUserDynamicController extends BaseController
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequiresPermissions("app:dynamic:list")
|
// @RequiresPermissions("app:dynamic:list")
|
||||||
@GetMapping("/pageList")
|
@GetMapping("/pageList")
|
||||||
@ApiOperation(value = "分页app用户动态列表", notes = "分页app用户动态列表", httpMethod = "GET")
|
@ApiOperation(value = "分页app用户动态列表", notes = "分页app用户动态列表", httpMethod = "GET")
|
||||||
public TableDataInfo pageList(AppUserDynamic appUserDynamic) {
|
public TableDataInfo pageList(AppUserDynamic appUserDynamic) {
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ public class AppUserDynamic extends BaseEntity
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
@Excel(name = "是否会员")
|
@Excel(name = "是否会员")
|
||||||
private Long isMember;
|
private int isMember;
|
||||||
|
|
||||||
public void setIsTop(Long isTop)
|
public void setIsTop(Long isTop)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -174,12 +174,12 @@
|
||||||
@click="handleReject(scope.row)"
|
@click="handleReject(scope.row)"
|
||||||
>驳回
|
>驳回
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<!-- <el-button-->
|
||||||
size="mini"
|
<!-- size="mini"-->
|
||||||
type="error"
|
<!-- type="error"-->
|
||||||
icon="el-icon-finished"
|
<!-- icon="el-icon-finished"-->
|
||||||
@click="handleDelete(scope.row)"
|
<!-- @click="handleDelete(scope.row)"-->
|
||||||
>删除</el-button>
|
<!-- >删除</el-button>-->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue