| | |
| | | package com.fgkj.controller; |
| | | |
| | | import com.fgkj.mapper.UinfDaoFactory; |
| | | import com.fgkj.util.*; |
| | | |
| | | import com.fgkj.dto.Dev_param; |
| | | import com.fgkj.dto.ServiceModel; |
| | | import com.fgkj.dto.User_log; |
| | | import com.fgkj.mapper.UinfDaoFactory; |
| | | import com.fgkj.services.Dev_paramService; |
| | | import com.fgkj.services.User_logService; |
| | | import io.swagger.annotations.Api; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | @RequestMapping("devParam") |
| | | @RestController |
| | | @Api |
| | | public class Dev_paramController{ |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private Dev_paramService service; |
| | | @Autowired |
| | | @Resource |
| | | private User_logService uservice; |
| | | |
| | | |