#
Junjie
2024-07-03 b334ee72afc23ead7f0cd5efc9a1343f7ceaae90
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.common.wms.service.impl;
 
import com.zy.asrs.common.wms.mapper.WrkLastnoMapper;
import com.zy.asrs.common.wms.entity.WrkLastno;
import com.zy.asrs.common.wms.service.WrkLastnoService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("wrkLastnoService")
public class WrkLastnoServiceImpl extends ServiceImpl<WrkLastnoMapper, WrkLastno> implements WrkLastnoService {
 
}