using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.Models
{
///
/// 物料档案
///
public class ICSInventoryDto
{
public string InvCode { get; set; }
public string InvName { get; set; }
}
///
/// 物料关联检验项目信息
///
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; }
}
}