jyy
2021-03-17 2772d25de9dfaf10f1c5a3256c2968ae47efcc18
zq-erp/src/main/java/com/matrix/biz/service/BizUserService.java
@@ -2,7 +2,6 @@
import com.matrix.biz.bean.BizUser;
import com.matrix.core.pojo.PaginationVO;
import com.matrix.core.web.BaseServices;
import java.util.List;
@@ -11,7 +10,7 @@
 * @author jyy
 * @date 2019-05-31 10:03
 */
public interface BizUserService extends BaseServices<BizUser> {
public interface BizUserService  {
   
   /**
    * 新增
@@ -33,15 +32,12 @@
    */
   public int modifyByModel(BizUser bizUser);
   
   /**
    * 批量删除
    */
   public int remove(List<String> list);
   /**
    * 根据id删除
    */
   public int removeById(String userId);
   public int removeById(Long userId);
   
   /**
    * 根据对象删除
@@ -62,11 +58,8 @@
    * 统计记录数
    */
   public int  findTotal(BizUser bizUser);
   /**
    * 根据id查询
    */
   public BizUser  findById(String userId);
   public int remove(List<Long> list);
      
   /**
@@ -74,7 +67,8 @@
    */
   public BizUser findByOpenId(String openId);
   public BizUser  findById(Long userId);
   /**
    * 保存用户信息
    */