Junjie
2023-05-19 db1de2dced1def55238e8a2cba3fbdff70d0f3c1
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.CommandInfoMapper;
import com.zy.asrs.entity.CommandInfo;
import com.zy.asrs.service.CommandInfoService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("commandInfoService")
public class CommandInfoServiceImpl extends ServiceImpl<CommandInfoMapper, CommandInfo> implements CommandInfoService {
 
}