| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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.UtcNow;
- /// <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 bool IsSuccess { get; set; }
- /// <summary>
- /// 机器人拍照位置
- /// </summary>
- public string RobotPosition { get; set; }
- /// <summary>
- /// 像素坐标
- /// </summary>
- public string PixelPosition { get; set; }
- /// <summary>
- /// 绝对坐标
- /// </summary>
- 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; }
- }
- }
|