This commit is contained in:
rnchg
2026-07-14 21:29:27 +08:00
commit f7ad7e20aa
1773 changed files with 514155 additions and 0 deletions
@@ -0,0 +1,10 @@
namespace FASS.Scheduler.Lite.Controllers.Models.Response
{
public class AgvReleaseResult
{
public string? TaskNo { get; set; }//任务号
public required string[] ShelfCodes { get; set; }//货架编码数组
public string? State { get; set; }//放行状态
public string? Message { get; set; }//描述
}
}