xiaoyong931011
2021-03-18 e5e02b9d141e54ae1f34a276d85ae2a98ba5c584
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.activity.controller;
 
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.beans.factory.annotation.Autowired;
import com.xcong.excoin.modules.activity.service.ActivityReceiveRecordService;
 
/**
 * @description 活动记录表
 * @author yourName
 * @date 2021-03-18 17:53
 */
@RestController
@RequestMapping(value = "admin/activityReceiveRecord")
public class ActivityReceiveRecordAction {
 
    @Autowired
    private ActivityReceiveRecordService activityReceiveRecordService;
 
  
}