22 lines
422 B
C#
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; }
|
|
}
|