视觉设备判定记录

This commit is contained in:
2024-06-21 15:38:47 +08:00
parent b522a27ee9
commit 4de491e331
3 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using JNPF.Common.Contracts;
namespace Tnb.ProductionMgr.Entities
{
/// <summary>
/// 视觉设备判定结果记录表
/// </summary>
public class PrdVisionResultRecord : BaseEntity<string>
{
public string info { get; set; }
public string result { get; set; }
public int num { get; set; }
public DateTime create_time { get; set; }
}
}