You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
457 B
Java
16 lines
457 B
Java
9 months ago
|
package com.glxp.api.service.collect;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.glxp.api.dao.collect.IoSplitFifoInvRelMapper;
|
||
|
import com.glxp.api.entity.collect.IoSplitFifoInvRel;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* @author : zhangsan
|
||
|
* @date : 2024/9/27 10:27
|
||
|
* @modyified By :
|
||
|
*/
|
||
|
@Service
|
||
|
public class IoSplitFifoInvRelService extends ServiceImpl<IoSplitFifoInvRelMapper, IoSplitFifoInvRel> {
|
||
|
}
|