diff --git a/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisFeeTypeController.java b/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisFeeTypeController.java new file mode 100644 index 000000000..fe567673f --- /dev/null +++ b/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisFeeTypeController.java @@ -0,0 +1,118 @@ + +/** + * @Project: emis + * @Title: EmisFeeTypeController.java + * @author linfso + * @date 2024-01-12 10:12:04 + * @Copyright: ShangHai Duta 2022 All rights reserved. + * @version v1.0 + * @Description:
费用类型 控制器
+ */ + +package com.xdadan.erp.web.emis; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import com.xdadan.erp.common.annotation.Log; +import com.xdadan.erp.common.core.controller.BaseController; +import com.xdadan.erp.common.core.domain.AjaxResult; +import com.xdadan.erp.common.core.page.TableDataInfo; +import com.xdadan.erp.common.enums.BusinessType; +import com.xdadan.erp.common.utils.StringUtils; +import com.xdadan.erp.common.utils.poi.ExcelUtil; + +import com.xdadan.erp.emis.domain.EmisFeeType; +import com.xdadan.erp.emis.service.IEmisFeeTypeService; + +/** + * 费用类型Controller + * + * @author linfso + * @date 2024-01-12 10:12:04 + */ +@RestController +@RequestMapping("/emis/emisFeeType") +public class EmisFeeTypeController extends BaseController +{ + @Autowired + private IEmisFeeTypeService emisFeeTypeService; + + /** + * 查询费用类型列表 + */ + @PreAuthorize("@ss.hasPermi('emis:emisFeeType:list')") + @GetMapping("/list") + public TableDataInfo list(EmisFeeType emisFeeType) + { + startPage(); + List