You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
754 B
Java
27 lines
754 B
Java
package com.glxp.api.dao.purchase;
|
|
|
|
|
|
import com.glxp.api.entity.purchase.CustomerContactEntity;
|
|
import com.glxp.api.req.system.DeleteRequest;
|
|
import com.glxp.api.req.purchase.CustomerContactFilterRequest;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface CustomerContacDao {
|
|
|
|
List<CustomerContactEntity> filterCustomerContact(CustomerContactFilterRequest userResisterFilterRequest);
|
|
|
|
boolean insertCustomerContact(CustomerContactEntity customerContactEntity);
|
|
|
|
boolean updateCustomerContact(CustomerContactEntity customerContactEntity);
|
|
|
|
boolean deleteById(String customerId);
|
|
|
|
CustomerContactEntity selectById(Long customerId);
|
|
|
|
boolean deleteContact(DeleteRequest deleteRequest);
|
|
|
|
}
|