XiangTanReportTiming/CreateAccountBookConsole/Models/SpecialAccountBook.cs

30 lines
907 B
C#
Raw Permalink Normal View History

2025-07-28 15:24:19 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CreateAccountBookConsole.Models
{
/// <summary>
/// 专用账册
/// </summary>
public class SpecialAccountBook
{
public int Id { get; set; }
public string YearDM { get; set; }
public string ManuNo { get; set; }
public string EffDate { get; set; }
public int BeforeQuantity { get; set; }
public int InQuantity { get; set; }
public int TotalQuantity { get; set; }
public string DrawerNo { get; set; }
public int Quantity { get; set; }
public string PharmacyUser { get; set; }
public string InPharmacy { get; set; }
public string OperatorUser { get; set; }
public string OperatorCheck { get;set; }
public DateTime CreateTime { get; set; }
}
}