#
Junjie
2024-08-15 25afd6ad3665690ecad3eed2fee7ffba7364d70a
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 {
 
}