Junjie
1 天以前 03c3ae747f82ad22c761c79e7b1c0e0031c57d41
1
2
3
4
5
6
7
8
9
10
package com.zy.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.system.entity.UserLogin;
 
public interface UserLoginService extends IService<UserLogin> {
 
    int selectCountByCurrentWeek();
 
}