| | |
| | | |
| | | import com.matrix.biz.bean.BizUser; |
| | | import com.matrix.core.pojo.PaginationVO; |
| | | import com.matrix.core.web.BaseServices; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @author jyy |
| | | * @date 2019-05-31 10:03 |
| | | */ |
| | | public interface BizUserService extends BaseServices<BizUser> { |
| | | public interface BizUserService { |
| | | |
| | | /** |
| | | * 新增 |
| | |
| | | */ |
| | | public int modifyByModel(BizUser bizUser); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | */ |
| | | public int remove(List<String> list); |
| | | |
| | | |
| | | /** |
| | | * 根据id删除 |
| | | */ |
| | | public int removeById(String userId); |
| | | public int removeById(Long userId); |
| | | |
| | | /** |
| | | * 根据对象删除 |
| | |
| | | * 统计记录数 |
| | | */ |
| | | public int findTotal(BizUser bizUser); |
| | | |
| | | /** |
| | | * 根据id查询 |
| | | */ |
| | | public BizUser findById(String userId); |
| | | |
| | | public int remove(List<Long> list); |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | |
| | | public BizUser findByOpenId(String openId); |
| | | |
| | | |
| | | public BizUser findById(Long userId); |
| | | /** |
| | | * 保存用户信息 |
| | | */ |