| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using SqlSugar;
- using System;
- namespace TeamAAS_VP.Models
- {
- [SugarTable("PhotoCaptureRecord")]
- public class PhotoCaptureRecord
- {
- [SugarColumn(IsPrimaryKey = true)]
- public Guid Id { get; set; } = Guid.NewGuid();
- /// <summary>
- /// 拍照时间
- /// </summary>
- public DateTime CaptureTime { get; set; } = DateTime.Now;
- /// <summary>
- /// 配方名
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string RecipeName { get; set; }
- /// <summary>
- /// 产品序列号
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string ProductSN { get; set; }
- /// <summary>
- /// 相机名
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string CameraName { get; set; }
- /// <summary>
- /// 流程名
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string ProcessName { get; set; }
- /// <summary>
- /// 位置编号
- /// </summary>
- public int PositionIndex { get; set; }
- /// <summary>
- /// 是否成功
- /// </summary>
- public bool IsSuccess { get; set; }
- /// <summary>
- /// 机器人拍照位置
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string RobotPosition { get; set; }
- /// <summary>
- /// 像素坐标
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string PixelPosition { get; set; }
- /// <summary>
- /// 绝对坐标
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string AbsolutePosition { get; set; }
- /// <summary>
- /// 图片路径
- /// </summary>
- [SugarColumn(Length = 1000, IsNullable = true)]
- public string ImagePath { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [SugarColumn(Length = 1000, IsNullable = true)]
- public string Remarks { get; set; }
- /// <summary>
- /// 当前的操作员名称
- /// </summary>
- [SugarColumn(Length = 255, IsNullable = true)]
- public string OperatorName { get; set; }
- }
- }
|