Commit 9a6a9e70 authored by liudong1993's avatar liudong1993

1

parent 0f68ce9c
......@@ -64,6 +64,18 @@ namespace Edu.WebApi.Controllers.Goods
x.GoodsId,
x.GoodsName,
x.CoverImage,
IncomeList = x.IncomeList.Select(z => new
{
z.FrID,
z.Status,
z.Is_Cashier
}),
ExpendList = x.ExpendList.Select(z => new
{
z.FrID,
z.Status,
z.Is_Cashier
}),
CreateDate = x.CreateDate.ToString("yyyy-MM-dd HH:mm")
});
return ApiResult.Success("", pmodel);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment