1
pulg
2025-05-15 8c20b276c784beff4eb4e9b643c2310efbbf6a12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.SJML.Dto
{
    public class FailTask
    {
        public int index { get; set; }
        public string errCode { get; set; }
        public string errMsg { get; set; }
    }
}