| | |
| | | public ReturnDto<string> EditModel([FromBody] dynamic model) |
| | | { |
| | | Guid? guid = model.guid; //到货单主键 |
| | | string fngDesc = model.fngDesc; //备注 |
| | | string fngDesc = model.fngDesc; //异常描述 |
| | | string iqcRemark = model.iqcRemark; |
| | | string ckId=model.ckId; |
| | | var _outMsg = ""; |
| | | var _outSum = -1; |
| | |
| | | new("@inOrderGuid", UtilityHelper.CheckGuid(guid) ? guid: DBNull.Value), |
| | | new("@fngDesc", fngDesc), |
| | | new("@ckId", ckId), |
| | | new("@iqcRemark", iqcRemark), |
| | | }; |
| | | parameters[0].Direction = ParameterDirection.Output; |
| | | parameters[1].Direction = ParameterDirection.Output; |