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 用友即时库存_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 string 单重 { get; set; } [SugarColumn(ColumnName = "库存数量", Length = 255)] public decimal 库存数量 { get; set; } } }