Files
2023-11-06 19:35:59 +08:00

26 lines
758 B
C#

using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.QcMgr.Entities
{
[SugarTable("qc_check_item")]
public class QcCheckItem : BaseEntity<string>
{
public QcCheckItem()
{
id = SnowflakeIdHelper.NextId();
}
public string? code { get; set; }
public string? name { get; set; }
public string? type { get; set; }
public string? attachment { get; set; }
public string? create_id { get; set; }
public DateTime? create_time { get; set; }
public string? modify_id { get; set; }
public DateTime? modify_time { get; set; }
public string? extras { get; set; }
public string? remark { get; set; }
}
}