zwl
2025-07-09 958883d6f4dac68fcbbccadb4e7f87e963eee0e8
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.common.wms.service.impl;
 
import com.zy.asrs.common.wms.mapper.CstmrMapper;
import com.zy.asrs.common.wms.entity.Cstmr;
import com.zy.asrs.common.wms.service.CstmrService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("cstmrService")
public class CstmrServiceImpl extends ServiceImpl<CstmrMapper, Cstmr> implements CstmrService {
 
}