using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEA_Model.Models
|
{
|
[SugarTable("Dt_MedicineGoods", "药品基础信息表")]
|
public class Dt_MedicineGoods : BaseEntity
|
{
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
|
[SugarColumn(ColumnName = "Goods_no", IsNullable = true, Length = 50, ColumnDescription = "药品编码(唯一)")]
|
public string Goods_no { get; set; }
|
|
[SugarColumn(ColumnName = "Goods_tym", IsNullable = true, Length = 50, ColumnDescription = "药品通用名")]
|
public string Goods_tym { get; set; }
|
|
|
|
|
|
[SugarColumn(ColumnName = "Goods_spm", IsNullable = true, Length = 50, ColumnDescription = "药品名称")]
|
public string Goods_spm { get; set; }
|
|
[SugarColumn(ColumnName = "Model", IsNullable = true, Length = 70, ColumnDescription = "规格")]
|
public string Model { get; set; }
|
|
[SugarColumn(ColumnName = "Factory", IsNullable = true, Length = 50, ColumnDescription = "生产厂家")]
|
public string Factory { get; set; }
|
|
[SugarColumn(ColumnName = "Unit", IsNullable = true, Length = 20, ColumnDescription = "计量单位")]
|
public string Unit { get; set; }
|
|
|
[SugarColumn(ColumnName = "Item_Iength", IsNullable = true, ColumnDescription = "单品长度,毫米为单位")]
|
public decimal Item_Iength { get; set; }
|
|
[SugarColumn(ColumnName = "Item_width", IsNullable = true, ColumnDescription = "单品宽度,毫米为单位")]
|
public decimal Item_width { get; set; }
|
|
[SugarColumn(ColumnName = "Item_hight", IsNullable = true, ColumnDescription = "单品高度,毫米为单位")]
|
public decimal Item_hight { get; set; }
|
|
[SugarColumn(ColumnName = "Item_volumn", IsNullable = true, ColumnDescription = "单品体积,立方毫米为单位")]
|
public decimal Item_volumn { get; set; }
|
|
[SugarColumn(ColumnName = "Item_weight", IsNullable = true, ColumnDescription = "单品重量,克为单位")]
|
public decimal Item_weight { get; set; }
|
|
|
[SugarColumn(ColumnName = "Storage_cond", IsNullable = true, Length = 100, ColumnDescription = "储存条件")]
|
public string Storage_cond { get; set; }
|
|
|
[SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")]
|
public string Remark { get; set; }
|
|
|
[SugarColumn(ColumnName = "GoodStatus", IsNullable = true, Length = 50, ColumnDescription = "药品状态,是否下发给wcs,未下发,下发完成")]
|
public string GoodStatus { get; set; }
|
|
|
}
|
}
|