对接企业微信

This commit is contained in:
2026-04-24 20:10:51 +08:00
parent 03ba0c9090
commit d1ff7bde35
16 changed files with 1097 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.QweiUser;
import java.util.Map;
public interface IQweiUserService extends IService<QweiUser> {
Map<String, Object> add(QweiUser entity);
Map<String, Object> update(QweiUser entity);
Map<String, Object> deleteById(String id);
Map<String, Object> pageQuery(Integer current,
Integer size,
String userid,
String userName,
Long mainDepartmentId,
Integer status);
}