企标制修订计划模块

This commit is contained in:
yuezhihang
2021-12-17 16:24:40 +08:00
parent 9856f73052
commit ce40aed7cb
3 changed files with 5 additions and 1 deletions
@@ -70,6 +70,9 @@ public class EsRevisePlan extends BasePage {
@ApiModelProperty(value = "起草责任单位")
private String unit;
@ApiModelProperty(value = "起草责任单位ID")
private String unitName;
}
@@ -41,7 +41,7 @@ public interface TsRoleDao extends BaseMapper<TsRole> {
* @param menuId:权限ID
*/
@Insert("insert into ts_role_menu (role_id,menu_id) values (#{roleId},#{menuId})")
void addMenu(String roleId, String menuId);
void addMenu(@Param("roleId") String roleId, @Param("menuId") String menuId);
/**
* 删除权限
@@ -18,6 +18,7 @@
draft_time,
release_time,
unit,
(select group_concat(ts_institution.name) from ts_institution where find_in_set(ts_institution.id,unit)) as unitName,
(SELECT GROUP_CONCAT(UNAME) from ts_user WHERE find_in_set(USID,drafter) ) as drafterName,
(SELECT GROUP_CONCAT(UNAME) from ts_user WHERE find_in_set(USID,res_person) ) as res_personName,
(SELECT GROUP_CONCAT(UNAME) from ts_user WHERE find_in_set(USID,wg_leader) ) as wg_leaderName