| package com.matrix.system.activity.action; | 
| import com.matrix.system.activity.service.ActivitySignReceiveRecordService; | 
| 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/activitySignReceiveRecord") | 
| public class ActivitySignReceiveRecordAction { | 
|   | 
|     @Autowired | 
|     private ActivitySignReceiveRecordService activitySignReceiveRecordService; | 
|   | 
|    | 
| } |