天津投入产出系统后端
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.
 
 
 
 
 
 

48 lines
1.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebAPI.Models
{
public class Inventory
{
public string PID { get; set; }
public string ProductCode { get; set; }
/// <summary>
/// 1:泡沫 2:注塑
/// </summary>
public string Type { get; set; }
/// <summary>
/// 1:库存 2:出库 3:隔离 4:报废
/// </summary>
public string State { get; set; }
public string CreateUser { get; set; }
public string CreateDate { get; set; }
public string UpdateUser { get; set; }
public string UpdateDate { get; set; }
/// <summary>
/// 计划ID
/// </summary>
public string PlanID { get; set; }
public string Remark1 { get; set; }
public string Remark2 { get; set; }
public string Remark3 { get; set; }
public string MFGNAME { get; set; }
public string User { get; set; }
}
}