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.
29 lines
684 B
29 lines
684 B
package jnpf.service; |
|
|
|
import jnpf.base.service.SuperService; |
|
import com.baomidou.mybatisplus.extension.service.IService; |
|
import jnpf.base.Pagination; |
|
import jnpf.entity.ContractEntity; |
|
|
|
import java.util.*; |
|
|
|
/** |
|
* |
|
* Contract |
|
* 版本: V3.0.0 |
|
* 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) |
|
* 作者: JNPF开发平台组 |
|
* 日期: 2020-12-31 |
|
*/ |
|
public interface ContractService extends SuperService<ContractEntity> { |
|
|
|
List<ContractEntity> getlist(Pagination pagination); |
|
|
|
ContractEntity getInfo(String id); |
|
|
|
void create(ContractEntity entity); |
|
|
|
void update(String id, ContractEntity entity); |
|
|
|
void delete(ContractEntity entity); |
|
}
|
|
|