18 lines
416 B
Java
18 lines
416 B
Java
package com.mobai.controller;
|
|
|
|
import com.mobai.service.StayTimeService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* @ClassName StayTimeController
|
|
* @Description 描述
|
|
* @Author Mobai
|
|
* @Date 2024/6/4 9:54
|
|
*/
|
|
@RestController
|
|
public class StayTimeController {
|
|
@Autowired
|
|
private StayTimeService stayTimeService;
|
|
}
|