SnInfo.cs
342 Bytes
using SqlSugar;
using System;
namespace Hh.Mes.POJO.LicenseEntity
{
public class SnInfo
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
public string Sn { get; set; }
public DateTime Created { get; set; }
public string CreatedBy { get; set; }
}
}