| | |
| | | /// 设备维修列表 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route(template: "RepairScanDeviceQrCodeData")] |
| | | [Route(template: "RepairScanDeviceQrCodeDataList")] |
| | | [HttpGet] |
| | | public HttpResponseMessage RepairScanDeviceQrCodeData() |
| | | public HttpResponseMessage RepairScanDeviceQrCodeDataList() |
| | | { |
| | | mes = AppDeviceManageBLL.RepairScanDeviceQrCodeData(); |
| | | mes = AppDeviceManageBLL.RepairScanDeviceQrCodeDataList(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | |
| | | |
| | | |
| | | |
| | | |
| | | #region[安灯响应扫描工位/设备] |
| | | /// <summary> |
| | | /// 安灯响应扫描工位/设备 |
| | | /// </summary> |
| | | /// <param name="eqpcode">设备/工位编码</param> |
| | | /// <returns></returns> |
| | | [Route(template: "AppDeviceAnDengLampResponseScanSearch")] |
| | | [HttpPost] |
| | | public HttpResponseMessage AppDeviceAnDengLampResponseScanSearch(string eqpcode) |
| | | { |
| | | mes = AppDeviceManageBLL.AppDeviceAnDengLampResponseScanSearch(eqpcode); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[安灯响应提交] |
| | | /// <summary> |
| | | /// 安灯响应提交 |
| | | /// </summary> |
| | | /// <param name="username">登录人员</param> |
| | | /// <param name="eqpcode">设备编码</param> |
| | | /// <param name="wkshpcode">车间编码</param> |
| | | /// <param name="json">提交数据</param> |
| | | /// <returns></returns> |
| | | [Route(template: "AppDeviceAnDengLampResponseSave")] |
| | | [HttpPost] |
| | | public HttpResponseMessage AppDeviceAnDengLampResponseSave(string username, string eqpcode, string wkshpcode, List<ObjectData> json) |
| | | { |
| | | mes = AppDeviceManageBLL.AppDeviceAnDengLampResponseSave(username, eqpcode, wkshpcode, json); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | } |
| | | } |