1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yeshi.fanli.system.dao.msg;
|
| import java.util.List;
|
| import org.fanli.facade.system.entity.msg.SystemZnx;
|
| import com.yeshi.fanli.base.BaseMapper;
|
| public interface SystemZnxMapper extends BaseMapper<SystemZnx> {
|
| /**
| * 根据最小创建时间获取列表
| * @param createTime
| * @return
| */
| List<SystemZnx> listByMinCreateTime(long createTime);
|
| }
|
|