Uriagekun/Uriagekun/Lib/Data/GoodRegisterData.cs
2025-02-09 10:57:00 +09:00

22 lines
422 B
C#

using PetaPoco;
namespace Uriagekun.Lib.Data;
public class GoodRegisterData
{
[Column(Name = "good_id")]
public int GoodId { get; set; }
[Column(Name = "barcode")]
public string Barcode { get; set; }
[Column(Name = "label")]
public string Label { get; set; }
[Column(Name = "date")]
public DateTime Date { get; set; }
[Column(Name = "count")]
public int Count { get; set; }
}