22 lines
691 B
C#
22 lines
691 B
C#
using System.ComponentModel;
|
|
using SQLite;
|
|
|
|
namespace MasstransferCommon.Model.Entity;
|
|
|
|
[Table("wafers"), Description("晶环信息")]
|
|
public class Wafer : Entity
|
|
{
|
|
[Column("wafer_code"), Description("晶片编号")]
|
|
public string? WaferCode { get; set; }
|
|
|
|
[Column("color"), Description("晶片颜色")] public ChipColorEnum Color { get; set; }
|
|
|
|
[Column("context_id"), Description("上下文id")]
|
|
public string? ContextId { get; set; }
|
|
|
|
[Column("column"), Description("列")] public int Column { get; set; }
|
|
|
|
[Column("row"), Description("行")] public int Row { get; set; }
|
|
|
|
[Column("used"), Description("是否已使用")] public bool Used { get; set; }
|
|
} |