自动化立体仓库 - WCS系统
#
LSH
2024-03-19 a5fa1d77b80aeb74c228b1d4bd846eef35a4baca
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasCrnError;
import com.zy.asrs.mapper.BasCrnErrorMapper;
import com.zy.asrs.service.BasCrnErrorService;
import org.springframework.stereotype.Service;
 
@Service("basCrnErrorService")
public class BasCrnErrorServiceImpl extends ServiceImpl<BasCrnErrorMapper, BasCrnError> implements BasCrnErrorService {
 
}