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.
 
 
 

50 lines
1.6 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.Entity
{
public class CodingStockInModel
{
//产品条码
public string LotNo { get; set; }
//产品编码
public string InvCode { get; set; }
//供应商编码
public string VenCode { get; set; }
//制造商
public string MPN { get; set; }
//生产日期,自定义档案(因为日期格式不统一)
public string CreateDate { get; set; }
//批次号——记录在条码表自定义字段10
public string BatchCode { get; set; }
//流水码
public string StreamCode { get; set; }
//数量
public string Quantity { get; set; }
//特殊要求,可以为空
public string SpecialRequire { get; set; }
//操作人(用户编号)
public string User { get; set; }
//操作时间
public string MTIME { get; set; }
//站点
public string WorkPoint { get; set; }
public string ProjectCode { get; set; }
public string Version { get; set; }
public string Brand { get; set; }
public string cFree1 { get; set; }
public string cFree2 { get; set; }
public string cFree3 { get; set; }
public string cFree4 { get; set; }
public string cFree5 { get; set; }
public string cFree6 { get; set; }
public string cFree7 { get; set; }
public string cFree8 { get; set; }
public string cFree9 { get; set; }
public string cFree10 { get; set; }
}
}