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
428 B
11 lines
428 B
package com.crm.customer.mapper;
|
|
|
|
import com.crm.base.mapper.CrmBaseMapper;
|
|
import com.crm.customer.domain.entity.CustomerAgreement;
|
|
|
|
/**
|
|
* 战略协议 Mapper(返工票 12-F5):纯 CrmBaseMapper,无自定义 SQL
|
|
* (页签列表用 LambdaQueryWrapper 覆盖;跨客户场景不存在——协议只随客户页签出现)。
|
|
*/
|
|
public interface CustomerAgreementMapper extends CrmBaseMapper<CustomerAgreement> {
|
|
}
|
|
|