22 lines
514 B
C#
22 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.QcMgr.Entities
|
|
{
|
|
public class CheckItemOut
|
|
{
|
|
public string? checktypeid { get; set; }
|
|
public string? checktypename { get; set; }
|
|
public List<CheckItem>? items { get; set; }
|
|
}
|
|
public class CheckItem
|
|
{
|
|
public string? itemid { get; set; }
|
|
public string? name { get; set; }
|
|
public string? code { get; set; }
|
|
}
|
|
}
|