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.ActivitySubService;
|
|
/**
|
* @description 活动子表
|
* @author yourName
|
* @date 2021-03-18 17:53
|
*/
|
@RestController
|
@RequestMapping(value = "admin/activitySub")
|
public class ActivitySubAction {
|
|
@Autowired
|
private ActivitySubService activitySubService;
|
|
|
}
|