添加单灯调试

This commit is contained in:
hehaibing-1996
2024-06-25 13:48:57 +08:00
parent 7f35077c07
commit 7228b74cb5
8 changed files with 211 additions and 68 deletions

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.InStore
{
public class DebugStoreinfoSingleRequest : RequestBase
{
public string ShelfCode { get; set; }
public bool OnOff { get; set; } = false;
}
}