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.
13 lines
413 B
Java
13 lines
413 B
Java
10 months ago
|
package com.glxp.api.service.collect;
|
||
|
|
||
|
import org.springframework.stereotype.Service;
|
||
|
import javax.annotation.Resource;
|
||
|
import java.util.List;
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.glxp.api.entity.collect.IoCollectSet;
|
||
|
import com.glxp.api.dao.collect.IoCollectSetMapper;
|
||
|
@Service
|
||
|
public class IoCollectSetService extends ServiceImpl<IoCollectSetMapper, IoCollectSet> {
|
||
|
|
||
|
}
|