自动化立体仓库 - WMS系统
#
yxFwq
2024-07-29 33cb8b070c31a96bc514d07e3d1d9f6514a057d9
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.WrkMastCrnLogMapper;
import com.zy.asrs.entity.WrkMastCrnLog;
import com.zy.asrs.service.WrkMastCrnLogService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("wrkMastCrnLogService")
public class WrkMastCrnLogServiceImpl extends ServiceImpl<WrkMastCrnLogMapper, WrkMastCrnLog> implements WrkMastCrnLogService {
 
}