using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_Model.Models.ERP
|
{
|
public class WMS_采购及成品入库清单_ST
|
{
|
[SugarColumn(ColumnName = "单号", Length = 255)]
|
public string 单号 { get; set; }
|
[SugarColumn(ColumnName = "需求分类", Length = 255)]
|
public string 需求分类 { get; set; }
|
[SugarColumn(ColumnName = "单据类型", Length = 255)]
|
public string 单据类型 { get; set; }
|
[SugarColumn(ColumnName = "入库仓库编码", Length = 255)]
|
public string 入库仓库编码 { get; set; }
|
[SugarColumn(ColumnName = "入库仓库名称", Length = 255)]
|
public string 入库仓库名称 { get; set; }
|
[SugarColumn(ColumnName = "日期", Length = 255)]
|
public string 日期 { get; set; }
|
[SugarColumn(ColumnName = "行号", Length = 255)]
|
public int 行号 { get; set; }
|
[SugarColumn(ColumnName = "产品图号", Length = 255)]
|
public string 产品图号 { get; set; }
|
[SugarColumn(ColumnName = "料号", Length = 255)]
|
public string 料号 { get; set; }
|
[SugarColumn(ColumnName = "品名", Length = 255)]
|
public string 品名 { get; set; }
|
public decimal 单重 { get; set; }
|
[SugarColumn(ColumnName = "规格", Length = 255)]
|
public string 规格 { get; set; }
|
[SugarColumn(ColumnName = "单位", Length = 255)]
|
public string 单位 { get; set; }
|
[SugarColumn(ColumnName = "用友材质", Length = 255)]
|
public string 用友材质 { get; set; }
|
[SugarColumn(ColumnName = "入库数量", Length = 255)]
|
public decimal 入库数量 { get; set; }
|
[SugarColumn(ColumnName = "单据状态", Length = 255)]
|
public string 单据状态 { get; set; }
|
[SugarColumn(ColumnName = "执行标准号", Length = 255)]
|
public string 执行标准号 { get; set; }
|
[SugarColumn(ColumnName = "品牌", Length = 255)]
|
public string 品牌 { get; set; }
|
[SugarColumn(ColumnName = "唯一ID", Length = 255)]
|
public string 唯一ID { get; set; }
|
[SugarColumn(ColumnName = "料号ID", Length = 255)]
|
public string 料号ID { get; set; }
|
}
|
}
|