feat:维修商

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

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

@ -21,7 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectTdIndentureVo"> <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> </sql>
<select id="selectTdIndentureList" parameterType="TdIndenture" resultMap="TdIndentureResult"> <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="createStaffid != null and createStaffid != ''"> and CREATE_STAFFID = #{createStaffid}</if>
<if test="createDate != null "> and CREATE_DATE = #{createDate}</if> <if test="createDate != null "> and CREATE_DATE = #{createDate}</if>
<if test="deptId != null "> and dept_id = #{deptId}</if> <if test="deptId != null "> and dept_id = #{deptId}</if>
<!-- 数据范围过滤 -->
${params.dataScope}
</where> </where>
</select> </select>

Loading…
Cancel
Save