pjb
2025-06-19 eb42d8c04b0eda4795d8e1909949bf820701ac7f
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.TaskTypeMapper;
import com.zy.asrs.wms.asrs.entity.TaskType;
import com.zy.asrs.wms.asrs.service.TaskTypeService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("taskTypeService")
public class TaskTypeServiceImpl extends ServiceImpl<TaskTypeMapper, TaskType> implements TaskTypeService {
 
}