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
399 B
Java
13 lines
399 B
Java
2 years ago
|
package com.glxp.api.service.sync;
|
||
|
|
||
|
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.sync.SyncEditLog;
|
||
|
import com.glxp.api.dao.sync.SyncEditLogMapper;
|
||
|
@Service
|
||
|
public class SyncEditLogService extends ServiceImpl<SyncEditLogMapper, SyncEditLog> {
|
||
|
|
||
|
}
|