yl
2022-11-03 66d3b2f05fcbbc46f37b923001c0d06d838c2b0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    public class StepCheck
    {
        public string seq { get; set; }
        public string code { get; set; }
        public string name { get; set; }
        public string descr { get; set; }
        public string checkresult { get; set; }
    }
}