|
|
@@ -3,6 +3,7 @@ package com.dk.mdm.mapper.mst;
|
|
|
import com.dk.mdm.model.pojo.mst.Customer;
|
|
|
import com.dk.common.mapper.BaseMapper;
|
|
|
import com.dk.mdm.model.query.mst.CustomerQuery;
|
|
|
+import com.dk.mdm.model.response.ivt.InboundResponse;
|
|
|
import com.dk.mdm.model.response.mst.CustomerResponse;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
@@ -39,5 +40,12 @@ public interface CustomerMapper extends BaseMapper<Customer>{
|
|
|
|
|
|
|
|
|
int updateFollowStaffs(Customer customer);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 根据id查询
|
|
|
+ * @date : 2024/3/9 9:14
|
|
|
+ * @author : 于继渤
|
|
|
+ */
|
|
|
+ CustomerResponse selectCustomerById(@Param("id") String id);
|
|
|
}
|
|
|
|