| | |
| | | Guid? guid = model.guid; //主键 |
| | | string bz = model.bz; //备注 |
| | | string cjId = model.cjId; //车间 |
| | | string chkOut = model.chkOut; |
| | | string cxId = ""; //产线,用不到了 |
| | | string jhrs = ""; //计划人数,用不到了 |
| | | var _sb = new StringBuilder(); |
| | |
| | | new("@inCxId", cxId), |
| | | new("@inJhrs", jhrs), |
| | | new("@inEdtUserGuid", _userGuid), |
| | | new("@inLineList", _sb.ToString()) |
| | | new("@inLineList", _sb.ToString()), |
| | | new("@inP1",chkOut) |
| | | }; |
| | | parameters[0].Direction = ParameterDirection.Output; |
| | | parameters[1].Direction = ParameterDirection.Output; |
| | |
| | | public ReturnDto<ExpandoObject> EditModelSubmit([FromBody] dynamic mode) |
| | | { |
| | | string _guid = mode.guid; |
| | | string chkOut = mode.chkOut; |
| | | dynamic m = new ExpandoObject(); |
| | | m.outSum = -1; |
| | | m.outMsg = ""; |
| | |
| | | new("@inEdtUserGuid", _userGuid), |
| | | new("@inOrderGuid", _guid), |
| | | new("@inFieldValue", 1), |
| | | new("@in1", ""), |
| | | new("@in1", chkOut), |
| | | new("@in2", "") |
| | | }; |
| | | parameters[0].Direction = ParameterDirection.Output; |