namespace WCS.WorkEngineering.WebApi.Models.AGV { /// /// AGV 返回结果code值枚举 /// public class AgvResponseCode { /// /// 成功 /// public static string Success { get; set; } = "0"; /// /// 失败 /// public static string Fail { get; set; } = "1"; /// /// 重复提交 /// public static string Repeat { get; set; } = "6"; /// /// 失败,未知异常 /// public static string Error { get; set; } = "99"; } }