电子看板
This commit is contained in:
parent
5e4c4a63c8
commit
c6289843aa
|
|
@ -0,0 +1,24 @@
|
|||
package com.bonus.digitalSignage.backstage.controller;
|
||||
|
||||
import com.bonus.digitalSignage.backstage.service.DigitalSignageService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
/**
|
||||
* @className:DigitalSignageController
|
||||
* @author:cwchen
|
||||
* @date:2025-04-24-10:25
|
||||
* @version:1.0
|
||||
* @description:电子看板-controller
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/backstage/digitalSignage/")
|
||||
@Slf4j
|
||||
public class DigitalSignageController {
|
||||
|
||||
@Resource(name = "DigitalSignageService")
|
||||
private DigitalSignageService digitalSignageService;
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
package com.bonus.digitalSignage.backstage.dao;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @className:DigitalSignageDao
|
||||
* @author:cwchen
|
||||
* @date:2025-04-24-10:28
|
||||
* @version:1.0
|
||||
* @description:电子看板-数据层
|
||||
*/
|
||||
@Repository(value = "DigitalSignageDao")
|
||||
public interface DigitalSignageDao {
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package com.bonus.digitalSignage.backstage.service;
|
||||
|
||||
/**
|
||||
* @className:DigitalSignageService
|
||||
* @author:cwchen
|
||||
* @date:2025-04-24-10:27
|
||||
* @version:1.0
|
||||
* @description:电子看板-业务层
|
||||
*/
|
||||
public interface DigitalSignageService {
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
package com.bonus.digitalSignage.backstage.service.impl;
|
||||
|
||||
import com.bonus.digitalSignage.backstage.dao.DigitalSignageDao;
|
||||
import com.bonus.digitalSignage.backstage.service.DigitalSignageService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
/**
|
||||
* @className:DigitalSignageServiceImpl
|
||||
* @author:cwchen
|
||||
* @date:2025-04-24-10:27
|
||||
* @version:1.0
|
||||
* @description:电子看板-业务逻辑层
|
||||
*/
|
||||
@Service(value = "DigitalSignageService")
|
||||
@Slf4j
|
||||
public class DigitalSignageServiceImpl implements DigitalSignageService {
|
||||
|
||||
@Resource(name = "DigitalSignageDao")
|
||||
private DigitalSignageDao dao;
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?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.digitalSignage.backstage.dao.DigitalSignageDao">
|
||||
|
||||
</mapper>
|
||||
Loading…
Reference in New Issue