#
mrzhssss
2022-09-05 2a6ffd8bfdb3d8234a55e7fabe71999f1dba4fd9
1
2
3
4
5
6
7
8
9
10
package zy.cloud.wms.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import zy.cloud.wms.system.entity.UserLogin;
 
public interface UserLoginService extends IService<UserLogin> {
 
    int selectCountByCurrentWeek();
 
}