1
Administrator
2025-09-05 c35a88a3081b62bb02f9bcfcd25b66f7cb901d89
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.CommandInfoLog;
import com.zy.asrs.mapper.CommandInfoLogMapper;
import com.zy.asrs.service.CommandInfoLogService;
import org.springframework.stereotype.Service;
 
@Service("commandInfoLogService")
public class CommandInfoLogServiceImpl extends ServiceImpl<CommandInfoLogMapper, CommandInfoLog> implements CommandInfoLogService {
 
}