md
This commit is contained in:
parent
139e615f09
commit
5cb232295f
@ -13,6 +13,9 @@ package com.xdadan.erp.web.emis;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import com.xdadan.erp.common.annotation.filter.jackson.JacksonFilter;
|
||||
import com.xdadan.erp.emis.domain.EmisGoods;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
@ -60,6 +63,21 @@ public class EmisProblemTypeController extends BaseController
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询问题件类型列表
|
||||
*/
|
||||
@JacksonFilter(include= {
|
||||
"id",
|
||||
"typeName",
|
||||
},value= EmisProblemType.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
|
||||
@RequestMapping("/listSimple")
|
||||
public TableDataInfo listSimple(EmisProblemType emisProblemType)
|
||||
{
|
||||
startPage();
|
||||
List<EmisProblemType> list = emisProblemTypeService.selectEmisProblemTypeList(emisProblemType);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出问题件类型列表
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user