whycxzp
2021-12-17 797dd1d5dd23c945c4f296ae15b0db56f757491c
1
2
3
4
5
6
7
8
9
10
11
package com.whyc.mapper;
 
import com.whyc.pojo.UserLog;
 
import java.util.List;
 
public interface UserLogMapper extends CustomMapper<UserLog> {
 
    List<UserLog> getList(UserLog userLog);
 
}