package com.artfess.ljzc.business.controller;


import com.artfess.base.annotation.ApiGroup;
import com.artfess.base.constants.ApiGroupConsts;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.artfess.base.controller.BaseController;
import com.artfess.ljzc.business.model.BizAssetBusinessWarrents;
import com.artfess.ljzc.business.manager.BizAssetBusinessWarrentsManager;

/**
 * 经营性资产权属信息 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author min.wu
 * @since 2023-11-27
 */
@Slf4j
@Api(tags = "经营性资产-权属信息")
@RestController
@RequestMapping("/biz/assetBusinessWarrents/v1/")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ})
public class BizAssetBusinessWarrentsController extends BaseController<BizAssetBusinessWarrentsManager, BizAssetBusinessWarrents> {

}
