旧版报表、仓库
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.
 
 
 
 
 

23 lines
480 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Warehouse.Models.DTO
{
public class MaterialCodeDto
{
public string partnumber { get; set; }
public string parttype { get; set; }
public string description { get; set; }
public bool flag { get; set; }
}
public class PartTypeDto
{
public string parttype { get; set; }
public string description { get; set; }
public byte flag { get; set; }
}
}