package com.artfess.manage.material.controller;


import com.artfess.base.controller.BaseController;
import com.artfess.manage.material.manager.CmgtMaterialPurchasingDetailManager;
import com.artfess.manage.material.model.CmgtMaterialPurchasingDetail;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 物资采购申请明细 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author wujl
 * @since 2022-07-23
 */
@RestController
@RequestMapping("/manager/material/purchasing/detail")
public class CmgtMaterialPurchasingDetailController extends BaseController<CmgtMaterialPurchasingDetailManager, CmgtMaterialPurchasingDetail> {

}
