| | |
| | | /// <param name="deviceId"></param> |
| | | /// <param name="value"></param> |
| | | /// <returns></returns> |
| | | public SdaResEntity OutboundFinishConfirm(int deviceId, bool value, string stationCode) |
| | | public SdaResEntity OutboundFinishConfirm(int deviceId, bool value, string stationCode, bool isClearData) |
| | | { |
| | | SdaResEntity _SdaResEntity = new SdaResEntity(); |
| | | try |
| | |
| | | var Station = StationResult.resData as StationEntity; |
| | | |
| | | string msg = ""; |
| | | var result = Station.OutboundFinishConfirm(stationCode, value, out msg); |
| | | var result = Station.OutboundFinishConfirm(stationCode, value, out msg,isClearData); |
| | | _SdaResEntity.result = result; |
| | | _SdaResEntity.resMsg = msg; |
| | | return _SdaResEntity; |