Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
1b95da78ae
|
|
@ -0,0 +1,19 @@
|
|||
package com.bonus.imgTool.backstage.controller;
|
||||
|
||||
import com.bonus.imgTool.backstage.service.SynthesisQueryService;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @className:SynthesisQueryController
|
||||
* @author:cwchen
|
||||
* @date:2025-03-31-10:30
|
||||
* @version:1.0
|
||||
* @description:综合查询
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/backstage/synthesisQuery/")
|
||||
public class SynthesisQueryController {
|
||||
|
||||
private SynthesisQueryService synthesisQueryService;
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
package com.bonus.imgTool.backstage.dao;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @className:SynthesisQueryDao
|
||||
* @author:cwchen
|
||||
* @date:2025-03-31-10:40
|
||||
* @version:1.0
|
||||
* @description:综合查询
|
||||
*/
|
||||
@Repository(value = "SynthesisQueryDao")
|
||||
public interface SynthesisQueryDao {
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package com.bonus.imgTool.backstage.entity;
|
||||
|
||||
/**
|
||||
* @className:SynthesisQueryVo
|
||||
* @author:cwchen
|
||||
* @date:2025-03-31-10:40
|
||||
* @version:1.0
|
||||
* @description:综合查询-vo
|
||||
*/
|
||||
public class SynthesisQueryVo {
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package com.bonus.imgTool.backstage.service;
|
||||
|
||||
/**
|
||||
* @className:SynthesisQueryService
|
||||
* @author:cwchen
|
||||
* @date:2025-03-31-10:37
|
||||
* @version:1.0
|
||||
* @description:综合查询
|
||||
*/
|
||||
public interface SynthesisQueryService {
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
package com.bonus.imgTool.backstage.service.impl;
|
||||
|
||||
import com.bonus.imgTool.backstage.dao.SynthesisQueryDao;
|
||||
import com.bonus.imgTool.backstage.service.SynthesisQueryService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @className:SynthesisQueryServiceImpl
|
||||
* @author:cwchen
|
||||
* @date:2025-03-31-10:37
|
||||
* @version:1.0
|
||||
* @description:综合查询业务层
|
||||
*/
|
||||
@Service(value = "SynthesisQueryService")
|
||||
@Slf4j
|
||||
public class SynthesisQueryServiceImpl implements SynthesisQueryService {
|
||||
|
||||
private SynthesisQueryDao synthesisQueryDao;
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.bonus.imgTool.backstage.dao.SynthesisQueryDao">
|
||||
|
||||
|
||||
|
||||
</mapper>
|
||||
Loading…
Reference in New Issue