初始化项目
This commit is contained in:
21
src/main/java/com/njcn/syncdata/HBSyncDataApplication.java
Normal file
21
src/main/java/com/njcn/syncdata/HBSyncDataApplication.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package com.njcn.syncdata;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.mybatis.spring.annotation.MapperScan;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* @author hongawen
|
||||
* @version 1.0.0
|
||||
* @date 2023年06月06日 16:33
|
||||
*/
|
||||
@Slf4j
|
||||
@MapperScan("com.njcn.**.mapper")
|
||||
@SpringBootApplication(scanBasePackages = "com.njcn")
|
||||
public class HBSyncDataApplication {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(HBSyncDataApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.njcn.syncdata.mapper;
|
||||
|
||||
import com.njcn.db.mapper.BatchBaseMapper;
|
||||
import com.njcn.syncdata.pojo.po.RDisMpMeasurePhaseReportD;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
* @since 2023-05-31
|
||||
*/
|
||||
public interface RDisMpMeasurePhaseReportDMapper extends BatchBaseMapper<RDisMpMeasurePhaseReportD> {
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,19 @@
|
||||
package com.njcn.syncdata.service;
|
||||
|
||||
|
||||
import com.njcn.db.service.IReplenishMybatisService;
|
||||
import com.njcn.syncdata.pojo.po.RDisMpMeasurePhaseReportD;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
* @since 2023-05-31
|
||||
*/
|
||||
public interface IRDisMpMeasurePhaseReportDService extends IReplenishMybatisService<RDisMpMeasurePhaseReportD> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.njcn.syncdata.service.impl;
|
||||
|
||||
import com.njcn.db.service.impl.ReplenishMybatisServiceImpl;
|
||||
import com.njcn.syncdata.mapper.RDisMpMeasurePhaseReportDMapper;
|
||||
import com.njcn.syncdata.pojo.po.RDisMpMeasurePhaseReportD;
|
||||
import com.njcn.syncdata.service.IRDisMpMeasurePhaseReportDService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
* @since 2023-05-31
|
||||
*/
|
||||
@Service
|
||||
public class RDisMpMeasurePhaseReportDServiceImpl extends ReplenishMybatisServiceImpl<RDisMpMeasurePhaseReportDMapper, RDisMpMeasurePhaseReportD> implements IRDisMpMeasurePhaseReportDService {
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user