HuNan_DM_MultiBatch/DM_Weight/Models/AddChannelStockManuNo.cs

27 lines
648 B
C#
Raw Normal View History

2023-11-13 14:00:30 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DM_Weight.Models
{
public class AddChannelStockManuNo
{
//是否选中
public bool ItemIsChecked { get; set; }
//抽屉号
public string RowNo { get; set; }
//库位号
public string ColNo { get; set; }
//药品名称
public string DrugName { get; set; }
//规格
public string DrugSpec { get; set; }
//批次
public string ManuNo { get; set; }
//效期
public string EffDate { get; set; }
}
}