1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package jnpf.mapper;
|
| import jnpf.base.mapper.SuperMapper;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import jnpf.entity.ContractEntity;
|
| /**
| *
| * Contract
| * 版本: V3.0.0
| * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
| * 作者: JNPF开发平台组
| * 日期: 2020-12-31
| */
| public interface ContractMapper extends SuperMapper<ContractEntity> {
|
| }
|
|