自动化立体仓库 - WMS系统
zhang
2025-09-23 839dde0f9ac90050f24226b59131945cddb14b92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.third.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.third.entity.ExdOutstockTarget;
import com.zy.third.service.ExdOutstockTargetService;
import com.zy.third.mapper.ExdOutstockTargetMapper;
import org.springframework.stereotype.Service;
 
/**
* @author zc857
* @description 针对表【Exd_Outstock_Target】的数据库操作Service实现
* @createDate 2025-09-23 08:36:03
*/
@Service
public class ExdOutstockTargetServiceImpl extends ServiceImpl<ExdOutstockTargetMapper, ExdOutstockTarget>
implements ExdOutstockTargetService{
 
}