This commit is contained in:
qianjiawei
2023-08-21 13:46:21 +08:00
parent 465450c2d8
commit a7e96dd072
16 changed files with 48 additions and 16 deletions

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.QcMgr.Entities.Dto
namespace Tnb.QcMgr.Entities
{
public class CheckItemsInput
{

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.QcMgr.Entities.Dto;
namespace Tnb.QcMgr.Entities
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.QcMgr.Entities.Dto
namespace Tnb.QcMgr.Entities
{
public class QcCheckExecHOut
{

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.QcMgr.Entities
{
public class SpcDataInput
{
}
}

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
using NPOI.SS.Formula.PTG;
using Tnb.QcMgr.Entities.Enums;
namespace Tnb.QcMgr.Entities.Dto
namespace Tnb.QcMgr.Entities
{
public class TriggerPlan
{

View File

@@ -13,10 +13,10 @@ namespace Tnb.QcMgr.Entities
/// <summary>
/// spc控制图系数
/// </summary>
[SugarTable("qc_spc_data")]
public partial class QcSpcData : BaseEntity<string>
[SugarTable("qc_spc_config")]
public partial class QcSpcConfig : BaseEntity<string>
{
public QcSpcData()
public QcSpcConfig()
{
id = SnowflakeIdHelper.NextId();
}