md
This commit is contained in:
parent
6223a3958b
commit
02769e02f2
@ -99,6 +99,38 @@ public class EmisGoodsController extends BaseController
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@JacksonFilter(include= {
|
||||
"goodsCode",
|
||||
"goodsName",
|
||||
"goodsNameEn",
|
||||
"goodsType",
|
||||
"goodsModel",
|
||||
"nationArea",
|
||||
"ownerCode",
|
||||
"brand",
|
||||
"material",
|
||||
"grossWeight",
|
||||
"netWeight",
|
||||
"taxNo",
|
||||
"hsCode",
|
||||
"unit",
|
||||
"price",
|
||||
"currency",
|
||||
"ingredients",
|
||||
"purpose",
|
||||
"supplier",
|
||||
"licNo",
|
||||
"orderNum"
|
||||
},value= EmisGoods.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
|
||||
@RequestMapping("/listHotGoods")
|
||||
public TableDataInfo listHotGoods(String customerCode)
|
||||
{
|
||||
startPage();
|
||||
EmisGoods queryEmisGoods=new EmisGoods();
|
||||
List<EmisGoods> list = emisGoodsService.selectEmisGoodsList(queryEmisGoods);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出货物信息列表
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user