|
@@ -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);
|
|
|
}
|