jyy
2021-07-10 e2978c1e0864e17930b3d7bb44ad4382ed5b025c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.matrix.system.activity.action;
 
import com.matrix.system.activity.service.ActivitySignRecordService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import org.springframework.beans.factory.annotation.Autowired;
 
/**
 * @description 签到记录表
 * @author yourName
 * @date 2021-03-31 16:57
 */
@RestController
@RequestMapping(value = "admin/activitySignRecord")
public class ActivitySignRecordAction {
 
    @Autowired
    private ActivitySignRecordService activitySignRecordService;
 
  
}