yang_shj
6 months ago
7 changed files with 71 additions and 7 deletions
@ -0,0 +1,13 @@ |
|||||||
|
package com.hnac.hzims.operational.report.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.hnac.hzims.operational.report.entity.RunMonthEntity; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
* @date 2023/04/10 11:22:14 |
||||||
|
* @version 4.0.0 |
||||||
|
*/ |
||||||
|
public interface RunMonReportMapper extends BaseMapper<RunMonthEntity> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
package com.hnac.hzims.operational.report.service; |
||||||
|
|
||||||
|
import com.hnac.hzims.operational.report.entity.RunMonthEntity; |
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
public interface RunMonthReportService extends BaseService<RunMonthEntity> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.hnac.hzims.operational.report.service.impl; |
||||||
|
|
||||||
|
import com.hnac.hzims.operational.report.entity.RunMonthEntity; |
||||||
|
import com.hnac.hzims.operational.report.mapper.RunMonReportMapper; |
||||||
|
import com.hnac.hzims.operational.report.service.RunMonthReportService; |
||||||
|
import lombok.RequiredArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@RequiredArgsConstructor |
||||||
|
@Slf4j |
||||||
|
public class RunMonReportServiceImpl extends BaseServiceImpl<RunMonReportMapper, RunMonthEntity> implements RunMonthReportService { |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue