系统设置
角色
This commit is contained in:
pan.wl.2
2024-10-17 23:45:53 +08:00
parent 769baae2b7
commit fb91037ad2
35 changed files with 278 additions and 231 deletions

View File

@@ -24,7 +24,7 @@ public class DevPayConfig implements Serializable {
@TableField(exist = false)
@ApiModelProperty("显示名称")
private String showName;
private String payWayName;
@ApiModelProperty("渠道图标")
private String icon;

View File

@@ -22,4 +22,8 @@ public interface AdminMapper extends IBaseMapper<Admin> {
List<Admin> getByJobs(@Param("jobId") Integer jobId);
@Select("SELECT count(*) FROM la_admin admin INNER JOIN la_admin_role lad ON admin.id = lad.admin_id WHERE lad.role_id = #{roleId} AND admin.delete_time IS NULL")
Integer getCountByRoleId(@Param("roleId") Integer roleId);
}