领料人
This commit is contained in:
parent
7d2e6987ef
commit
97136aecc9
|
|
@ -312,4 +312,12 @@ public class BackReceiveController extends BaseController {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// @Log(title = "退料接收记录(编码接收)-web", businessType = BusinessType.INSERT)
|
||||||
|
// @GetMapping("backReceiveRecordWebPt")
|
||||||
|
// public AjaxResult backReceiveRecordWebPt(@RequestBody BackApplyInfo record) {
|
||||||
|
// startPage();
|
||||||
|
// List<BackApplyInfo> list = backReceiveService.backReceiveRecordWebPt(record);
|
||||||
|
// return AjaxResult.success(getDataTable(list));
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
WHERE
|
WHERE
|
||||||
u.STATUS = '0'
|
u.STATUS = '0'
|
||||||
AND u.del_flag = '0'
|
AND u.del_flag = '0'
|
||||||
AND r.role_id = #{roleId}
|
<if test="roleId != null">
|
||||||
|
AND r.role_id = #{roleId}
|
||||||
|
</if>
|
||||||
|
|
||||||
|
<if test="roleIds != null">
|
||||||
|
AND r.role_id in
|
||||||
|
<foreach item="roleId" collection="roleIds" open="(" separator="," close=")">
|
||||||
|
#{roleId}
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<insert id="insertUser" parameterType="com.bonus.sgzb.system.api.domain.SysUser" useGeneratedKeys="true" keyProperty="userId">
|
<insert id="insertUser" parameterType="com.bonus.sgzb.system.api.domain.SysUser" useGeneratedKeys="true" keyProperty="userId">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue