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.
16 lines
450 B
16 lines
450 B
package com.ccic.safeliab.service; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
import com.ccic.safeliab.entity.ExCustomerRetention; |
|
import com.ccic.safeliab.support.BaseService; |
|
import com.ccic.safeliab.vo.CustomerRetentionVO; |
|
|
|
/** |
|
* 服务类 |
|
* |
|
* @author edwong |
|
*/ |
|
public interface CustomerRetService extends BaseService<ExCustomerRetention> { |
|
|
|
IPage<CustomerRetentionVO> findPage(CustomerRetentionVO cusRet, int page, int num); |
|
}
|
|
|