You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
339 B
11 lines
339 B
|
3 weeks ago
|
package com.ruoyi.basic.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.ruoyi.basic.domain.AppAgreement;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
@Mapper
|
||
|
|
public interface AppAgreementMapper extends BaseMapper<AppAgreement> {
|
||
|
|
// 无需额外方法,使用 MyBatis-Plus 提供的条件构造器即可
|
||
|
|
}
|