| | |
| | | } |
| | | } |
| | | |
| | | |
| | | [HttpPost("Regenerate")] |
| | | public ResponseResult Regenerate([FromBody] MesOqcItemsDetect02 from) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | var item = m.Regenerate(from); |
| | | var tbBillList = |
| | | resultInfos.tbBillList = item; |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = tbBillList |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | [HttpPost("GetDetail5")] |
| | | public ResponseResult GetDetail5([FromBody] OQCDto dto) |
| | | { |
| | |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | var (item, totalCount) = m.GetPage(queryObj); |
| | | var tbBillList = |
| | | resultInfos.tbBillList = item; |
| | | var tbBillList = item; |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |