using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Application.OpenApi.Dto; public class WCSResultModel { /// /// 1:成功 -1:失败 /// public string StatusCode { get; set; } public string Msg { get; set; } }