| | |
| | | |
| | | public int updateByModel(@Param("record") BizUser bizUser); |
| | | |
| | | public int deleteByIds(@Param("list") List<String> list); |
| | | public int deleteByIds(@Param("list") List<Long> list); |
| | | |
| | | public int deleteById(String userId); |
| | | public int deleteById(Long userId); |
| | | |
| | | public int deleteByModel(@Param("record") BizUser bizUser); |
| | | |
| | |
| | | |
| | | public int selectTotalRecord(@Param("record") BizUser bizUser); |
| | | |
| | | public BizUser selectById(String userId); |
| | | public BizUser selectById(Long userId); |
| | | |
| | | public BizUser selectForUpdate(String userId); |
| | | public BizUser selectForUpdate(Long userId); |
| | | |
| | | public BizUser findByOpenId(@Param("openId") String openId); |
| | | |
| | | /** |
| | | * 批量设置销售员 |
| | | * @param list |
| | | * @param status |
| | | * @return |
| | | */ |
| | | int updateSalesByIds(@Param("list") List<String> list, @Param("status") Integer status); |
| | | |
| | | |
| | | } |