40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DM_Weight.Models
|
|
{
|
|
/// <summary>
|
|
/// 药箱药品移动记录表
|
|
/// </summary>
|
|
[SugarTable("move_channel_stock")]
|
|
public class MoveChannelStock
|
|
{
|
|
//[SugarColumn(ColumnName ="id",IsPrimaryKey =true)]
|
|
//public int Id { get; set; }
|
|
[SugarColumn(ColumnName = "machine_id")]
|
|
public string MachineId{get;set;}
|
|
[SugarColumn(ColumnName = "drug_id")]
|
|
public string DrugId { get; set; }
|
|
[SugarColumn(ColumnName = "quantity")]
|
|
public int Quantity { get; set; }
|
|
[SugarColumn(ColumnName = "From_manu_no")]
|
|
public string FromManuNo { get; set; }
|
|
[SugarColumn(ColumnName = "operator")]
|
|
public int? Operator { get; set; }
|
|
[SugarColumn(ColumnName = "reviewer")]
|
|
public int? Reviewer { get; set; }
|
|
[SugarColumn(ColumnName = "type")]
|
|
public int Type { get; set; }
|
|
[SugarColumn(ColumnName = "FromDrawer")]
|
|
public int FromDrawer { get; set; }
|
|
[SugarColumn(ColumnName = "ToDrawer")]
|
|
public int ToDrawer { get; set; }
|
|
[SugarColumn(ColumnName = "To_manu_no")]
|
|
public string ToManuNo { get; set; }
|
|
}
|
|
}
|