You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
716 B
28 lines
716 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Application.Models
|
|
{
|
|
/// <summary>
|
|
/// 物料档案
|
|
/// </summary>
|
|
public class ICSInventoryDto
|
|
{
|
|
public string InvCode { get; set; }
|
|
public string InvName { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 物料关联检验项目信息
|
|
/// </summary>
|
|
public class ICSInventory2InspectionGroup
|
|
{
|
|
public string InvCode { get; set; }
|
|
public string CheckAttr { get; set; }
|
|
public string CheckAttrName { get; set; }
|
|
public string GroupCode { get; set; }
|
|
public string GroupName { get; set; }
|
|
}
|
|
}
|