公告板
版本库
filestore
活动
搜索
登录
main
/
ERP_override
ERP
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
修改订单明细实体类
guoyuji
2024-01-30
2eed507a4dfffda298bcd3de479a66db5a69bbab
[ERP_override.git]
/
north-glass-erp
/
src
/
main
/
java
/
com
/
example
/
erp
/
mapper
/
sd
/
CustomerMapper.java
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();
}