HKC_Blazor/MasaBlazorApp3/Pojo/ReportDateInfo.cs

87 lines
2.5 KiB
C#
Raw Normal View History

using MySqlX.XDevAPI.Relational;
using System;
2025-07-05 17:27:18 +08:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
2025-07-05 17:27:18 +08:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.Pojo
{
public class ReportAccountDateInfo
2025-07-05 17:27:18 +08:00
{
//日期
public string OperationTime { get; set; } = string.Empty;
//操作类型
//public string Type { get; set; } = string.Empty;
//批号
public string ManuNo { get; set; } = string.Empty;
//效期
public string EffDate { get; set; } = string.Empty;
//上次批次结存
//public string BeforeManuQuan { get; set; } = string.Empty;
//入库数量
public int InQuantity { get; set; } = 0;
// 出库数量
public int OutQuantity { get; set; } = 0;
//批号结存
//public int ManuQuantity { get; set; } = 0;
//总结存
public int StockQuantity { get; set; } = 0;
//收/发药人
public string operatorName { get; set; } = string.Empty;
//复核人
public string ReviewerName { get; set; } = string.Empty;
public string DrugId { get; set; } = string.Empty;
//药品名称
public string DrugName { get; set; } = string.Empty;
//药品规格
public string DrugSpec { get; set; } = string.Empty;
//单位
public string BigUnit { get; set; } = string.Empty;
//剂型
public string Dosage { get; set; } = string.Empty;
//生产厂家
public string Manufactory { get; set; } = string.Empty;
//凭证号
public string InvoiceId { get; set; } = string.Empty;
////供应单位
//public string SupplierDept { get;set; } = string.Empty;
////领用部门
//public string ReceiveDept { get; set; } = string.Empty;
}
public class ReportStockDateInfo
{
public string DrugId { get; set; }
public string DrugName { get; set; }
public string DrugType { get; set; }
public string DrugSpec { get; set; }
public string Manufactory { get; set; }
public string PyCode { get; set; }
//基数
public int BaseQuantity { get; set; }
//批次
public string ManuNo { get; set; }
//效期
public string EffDate { get; set; }
//库位
public string location { get; set; }
//数量
public int Quantity { get; set; }
2025-07-05 17:27:18 +08:00
}
}