#
luxiaotao1123
2021-04-13 52f694ab369861f644f8efab797a85776b73ee52
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();
 
}