#
Junjie
2024-08-12 1948b092d9c104e84dac8abaf6a6346403fc8450
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.wms.asrs.service.impl;
 
import com.zy.asrs.wms.asrs.mapper.LanewayRuleMapper;
import com.zy.asrs.wms.asrs.entity.LanewayRule;
import com.zy.asrs.wms.asrs.service.LanewayRuleService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("lanewayRuleService")
public class LanewayRuleServiceImpl extends ServiceImpl<LanewayRuleMapper, LanewayRule> implements LanewayRuleService {
 
}