| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// SOP 维护(源平台 QualitySegmentImage)。
- /// </summary>
- [SugarTable("QualitySegmentImage", "S0 SOP 维护(QualitySegmentImage)")]
- [SugarIndex("uk_QualitySegmentImage_scope", nameof(Domain), OrderByType.Asc, nameof(Line), OrderByType.Asc, nameof(ItemNum), OrderByType.Asc, nameof(Op), OrderByType.Asc, nameof(ImageTypeID), OrderByType.Asc, IsUnique = false)]
- public class AdoS0QualitySegmentImage
- {
- [SugarColumn(ColumnName = "id", ColumnDescription = "SOP 主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "line", ColumnDescription = "生产线编码", Length = 100, IsNullable = true)]
- public string? Line { get; set; }
- [SugarColumn(ColumnName = "item_num", ColumnDescription = "物料编码", Length = 100, IsNullable = true)]
- public string? ItemNum { get; set; }
- [SugarColumn(ColumnName = "op", ColumnDescription = "工序编码", Length = 100, IsNullable = true)]
- public string? Op { get; set; }
- [SugarColumn(ColumnName = "image_type_id", ColumnDescription = "文件类型编码", Length = 100, IsNullable = true)]
- public string? ImageTypeID { get; set; }
- [SugarColumn(ColumnName = "path", ColumnDescription = "文件路径", Length = 1000, IsNullable = true)]
- public string? Path { get; set; }
- [SugarColumn(ColumnName = "descr", ColumnDescription = "文件名称", Length = 255, IsNullable = true)]
- public string? Descr { get; set; }
- [SugarColumn(ColumnName = "rev", ColumnDescription = "文件版本", Length = 50, IsNullable = true)]
- public string? Rev { get; set; }
- [SugarColumn(ColumnName = "sort_id", ColumnDescription = "排序", IsNullable = true)]
- public int? SortID { get; set; }
- [SugarColumn(ColumnName = "domain", ColumnDescription = "工厂域编码", Length = 50)]
- public string Domain { get; set; } = string.Empty;
- }
|