@@ -50,7 +50,7 @@ public class StaffController {
*/
@PostMapping({"/{id}"})
public ResponseResultVO selectById(@PathVariable String id) {
- return staffService.selectByStringId(id);
+ return staffService.selectById(id);
}
@@ -111,7 +111,7 @@
</select>
<!--员工-->
- <select id="selectByStringId" resultType="com.dk.mdm.model.response.core.StaffResponse">
+ <select id="selectByStringId" resultMap="BaseResultMap">
select <include refid="Base_Column_List"/>
from dkic_b.t_mst_staff t
where t.staff_id = #{staffId,typeHandler=UuidTypeHandler}