示例#1
0
 public void setEPC(string epc)
 {
     this.epc         = epc;
     this.nextCommand =
         RFIDHelper.RmuWriteDataCommandCompose(RMU_CommandType.RMU_SingleWriteData,
                                               null,
                                               1,
                                               2,
                                               this.epc,
                                               null);
 }
示例#2
0
 public operateActionInventoryWriteEpc(string epc)
 {
     this.epc         = epc;
     this.invokeEvent = RFIDEventType.RMU_CardIsReady;
     this.nextCommand =
         RFIDHelper.RmuWriteDataCommandCompose(RMU_CommandType.RMU_SingleWriteData,
                                               null,
                                               1,
                                               2,
                                               this.epc,
                                               null);
     this.nextCommandType = RFIDEventType.RMU_SingleWriteData;
     this.exceptionMsg    = "写入标签异常";
 }