New file |
| | |
| | | package com.whyc.controller; |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | @RequestMapping("devUpdate") |
| | | @RestController |
| | | @Api(tags = "设备升级") |
| | | public class DevUpdateStateController { |
| | | } |
New file |
| | |
| | | package com.whyc.controller; |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | @RequestMapping("filedownload") |
| | | @RestController |
| | | @Api(tags = "文件下载") |
| | | public class FgcdFiledownloadController { |
| | | } |
New file |
| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.DevUpdateState; |
| | | |
| | | public interface DevUpdateStateMapper extends CustomMapper<DevUpdateState>{ |
| | | } |
New file |
| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.FgcdFiledownload; |
| | | |
| | | public interface FgcdFiledownloadMapper extends CustomMapper<FgcdFiledownload>{ |
| | | } |
New file |
| | |
| | | package com.whyc.service; |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | public class DevUpdateStateService { |
| | | } |
New file |
| | |
| | | package com.whyc.service; |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | public class FgcdFiledownloadService { |
| | | } |
New file |
| | |
| | | <?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.whyc.mapper.DevUpdateStateMapper"> |
| | | |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?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.whyc.mapper.FgcdFiledownloadMapper"> |
| | | |
| | | |
| | | </mapper> |