HuNan_NOSqlSugar/DM_Dal/Models/Invoice.cs

21 lines
519 B
C#
Raw Normal View History

2024-07-06 10:01:30 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DM_Dal.Models
{
[Serializable]
public class Invoice
{
public string InvoiceNo { get; set; }
public string InvoiceDate { get; set; }
public int Count { get; set; }
public int Quantity { get; set; }
public int Status { get; set; }
public string PharmacyName1 { get; set; }
public string PharmacyName2 { get; set; }
}
}