guoyuji
2024-02-20 f23b5a60dcd349c7a38129b0ce06fa92a1a0d974
1
2
3
4
5
6
7
8
9
10
11
package com.example.erp.mapper.sd;
 
import com.example.erp.entity.sd.Customer;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface CustomerMapper {
    List<Customer> getCustomerList();
}