Browse Source

客户修改

Guo1B0 10 tháng trước cách đây
mục cha
commit
a1972d1fc8

+ 2 - 0
fhKeeper/formulahousekeeper/management-crm/src/main/java/com/management/platform/mapper/ActionLogMapper.java

@@ -21,4 +21,6 @@ public interface ActionLogMapper extends BaseMapper<ActionLog> {
     List<ActionLog> selectByInfoList(Integer id);
     @Select("select a.*,u.`name` userName from action_log a left join `user` u on a.user_id = u.id where code = 'business' and item_id = #{id}")
     List<ActionLog> selectByInfoListBusiness(Integer id);
+    @Select("select a.*,u.`name` userName from action_log a left join `user` u on a.user_id = u.id where code = 'custom' and item_id = #{id}")
+    List<ActionLog> selectByInfoListCustom(Integer id);
 }