This commit is contained in:
jl
2024-02-26 10:54:49 +08:00
parent 0d46fcfe0b
commit 8235f16d38
3 changed files with 34 additions and 19 deletions

View File

@ -740,7 +740,16 @@ namespace Epost.BLL
LabelParamModel model = new LabelParamModel();
model.Address = addritem["address"].ToString();
model.ControlIP = addritem["controlip"].ToString();
model.Parameter = show.No;
model.Uid = show.Uid;
if (string.IsNullOrEmpty(show.Uid))
{ model.Uid = show.No + addritem["address"].ToString(); }
model.Type = "N";
if (addritem["addresstype"].ToString() == "2")
{
model.Type = "C";
}
model.Parameter = model.Uid;
model.Command = "REMOVE_JOB";
model.Timeout = "0.5";
list.Add(model);