package com.artfess.cqxy.ledger.controller;

import com.artfess.base.annotation.ApiGroup;
import com.artfess.base.constants.ApiGroupConsts;
import com.artfess.base.controller.BaseController;
import com.artfess.cqxy.ledger.manager.MenuFieldManager;
import com.artfess.cqxy.ledger.model.MenuField;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*;

/**
 * 自定义台账字段查询
 *
 * @author baseli
 * @since 2022年6月5日20:09:57
 */
@Slf4j
@RestController
@Api(tags = "台账-自定义台账-菜单功能所有字段接口")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ})
@RequestMapping("/biz/menuField/v1")
public class MenuFieldController extends BaseController<MenuFieldManager, MenuField> {

}

