¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models.BasicModel |
| | | { |
| | | [SugarTable(nameof(Dt_Changeovers), "æ¢åä¿¡æ¯")] |
| | | public class Dt_Changeovers : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æçç¼ç |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "ç©æç¼ç ")] |
| | | public string MaterielCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产线 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "产线")] |
| | | public string ProductionLine { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å·¥åº |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "å·¥åº")] |
| | | public string ProcessCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç¶æ |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ç¶æ")] |
| | | public string Status { get; set; } |
| | | } |
| | | } |