Uriagekun/Uriagekun/Lib/Data/RegisterData.cs
2025-02-09 11:05:45 +09:00

23 lines
428 B
C#

using PetaPoco;
namespace Uriagekun.Lib.Data;
[TableName("registers")]
public class RegisterData
{
[Column(Name = "id")]
public long Id { get; set; }
[Column(Name = "good_id")]
public int GoodId { get; set; }
[Column(Name = "date")]
public DateTime Date { get; set; }
[Column(Name = "price")]
public int Price { get; set; }
[Column(Name = "count")]
public int Count { get; set; }
}