feat:维修商

new-exam
wangxy 5 months ago
parent 3f5ebb4d1f
commit bc59e4f794

@ -1,6 +1,8 @@
package com.ruoyi.system.service.impl;
import java.util.List;
import com.ruoyi.common.annotation.DataScope;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.system.mapper.TdIndentureMapper;
@ -38,6 +40,7 @@ public class TdIndentureServiceImpl implements ITdIndentureService
* @param tdIndenture
* @return
*/
@DataScope(deptAlias = "d")
@Override
public List<TdIndenture> selectTdIndentureList(TdIndenture tdIndenture)
{

@ -21,7 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
<sql id="selectTdIndentureVo">
select INDENTURE_ID, INDENTURE_NAME, INDENTURE_ADDRESS, INDENTURE_PHONE, INDENTURE_MOBILE, INDENTURE_LINKMAN, LINKMAN_PHONE, LINKMAN_MOBILE, INDENTURE_STATE, REMARK, CREATE_STAFFID, CREATE_DATE ,dept_id from td_indenture
select INDENTURE_ID, INDENTURE_NAME, INDENTURE_ADDRESS, INDENTURE_PHONE, INDENTURE_MOBILE, INDENTURE_LINKMAN, LINKMAN_PHONE, LINKMAN_MOBILE, INDENTURE_STATE, REMARK, CREATE_STAFFID, CREATE_DATE ,dept_id from td_indenture d
</sql>
<select id="selectTdIndentureList" parameterType="TdIndenture" resultMap="TdIndentureResult">
@ -39,6 +39,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createStaffid != null and createStaffid != ''"> and CREATE_STAFFID = #{createStaffid}</if>
<if test="createDate != null "> and CREATE_DATE = #{createDate}</if>
<if test="deptId != null "> and dept_id = #{deptId}</if>
<!-- 数据范围过滤 -->
${params.dataScope}
</where>
</select>

Loading…
Cancel
Save