#
lty
2025-09-25 8478a159d79bf9ca5da04ab18562f2d7cdddb05c
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.WrkMastSta;
import com.zy.asrs.mapper.WrkMastStaMapper;
import com.zy.asrs.service.WrkMastStaService;
import org.springframework.stereotype.Service;
 
@Service("wrkMastStaService")
public class WrkMastStaServiceImpl extends ServiceImpl<WrkMastStaMapper, WrkMastSta> implements WrkMastStaService {
 
}