Commit 29c9d0ea by 墨竹

feat:企微收费

parent 45fec4df
...@@ -162,4 +162,15 @@ public interface StaffService { ...@@ -162,4 +162,15 @@ public interface StaffService {
* @date 2022-07-25 16:36:53 * @date 2022-07-25 16:36:53
*/ */
int resetAddNum(); int resetAddNum();
/**
* 更新是否激活
*
* @param activeStatus 活跃状态
* @param staffId 员工id
* @return int
* @author mozhu
* @date 2022-08-04 15:39:54
*/
int updateActiveStatusById(Integer activeStatus,String staffId);
} }
...@@ -191,4 +191,9 @@ public class StaffServiceImpl implements StaffService { ...@@ -191,4 +191,9 @@ public class StaffServiceImpl implements StaffService {
public int resetAddNum() { public int resetAddNum() {
return mapper.resetAddNum(); return mapper.resetAddNum();
} }
@Override
public int updateActiveStatusById(Integer activeStatus, String staffId) {
return mapper.updateActiveStatusById(activeStatus,staffId);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment