质检模块

This commit is contained in:
qianjiawei
2023-06-05 17:41:46 +08:00
parent 0d7e49695c
commit 2611d651a8
19 changed files with 821 additions and 21 deletions

View 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; }
}
}