This commit is contained in:
jl
2024-11-27 15:44:15 +08:00
parent a934f48c74
commit 5ac2c1b77c
7 changed files with 70 additions and 37 deletions

View File

@ -247,7 +247,7 @@ namespace Epost.BLL
LabelParamModel lockModel = new LabelParamModel();
lockModel.Address = model.Address;
lockModel.ControlIP = model.ControlIP;
lockModel.Parameter = "11101000";
lockModel.Parameter = "11111000";
lockModel.Command = "LOCK";
lockModel.Timeout = "0.5";
lockModel.Type = model.Type;
@ -259,7 +259,7 @@ namespace Epost.BLL
LabelParamModel lockModel = new LabelParamModel();
lockModel.Address = model.Address;
lockModel.ControlIP = model.ControlIP;
lockModel.Parameter = "00011000";
lockModel.Parameter = "11111000";
lockModel.Command = "UNLOCK";
lockModel.Timeout = "0.5";
lockModel.Type = model.Type;
@ -501,7 +501,7 @@ namespace Epost.BLL
model.ControlIP = item.ControlIP;
model.Address = item.Address;
model.Command = "REMOVE_JOB";
model.Uid = item.ID;
model.Uid = "U" + item.ID;
model.Type = "N";
list.Add(model);
LabelParamModel Unlockmodel = new LabelParamModel();