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 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 = "品牌", Length = 255)]
|
public string 品牌 { get; set; }
|
}
|
}
|