质检模块
This commit is contained in:
30
QcMgr/Tnb.QcMgr.Entities/Entity/QcCheckItem.cs
Normal file
30
QcMgr/Tnb.QcMgr.Entities/Entity/QcCheckItem.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user