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.ActivityMemberDetailService;
|
|
/**
|
* @description 活动个人详情表
|
* @author yourName
|
* @date 2021-03-18 17:53
|
*/
|
@RestController
|
@RequestMapping(value = "admin/activityMemberDetail")
|
public class ActivityMemberDetailAction {
|
|
@Autowired
|
private ActivityMemberDetailService activityMemberDetailService;
|
|
|
}
|