#
Junjie
2024-08-16 b466c42d036653cc6107a017d03c0adfa4ad257c
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.SuggestLocRuleMapper;
import com.zy.asrs.wms.asrs.entity.SuggestLocRule;
import com.zy.asrs.wms.asrs.service.SuggestLocRuleService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("suggestLocRuleService")
public class SuggestLocRuleServiceImpl extends ServiceImpl<SuggestLocRuleMapper, SuggestLocRule> implements SuggestLocRuleService {
 
}