初始化项目

This commit is contained in:
2023-06-06 19:28:10 +08:00
parent 1eb2d0e9b2
commit 58bbe3419c
11 changed files with 1958 additions and 4 deletions

View 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);
}
}

View File

@@ -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

View File

@@ -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> {
}

View File

@@ -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 {
}