¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace MES.Service.Modes.QcIssueResult; |
| | | |
| | | //å¼å¸¸å¤ç½®åç»æè¡¨ |
| | | [SugarTable("MES_QCISSUE_RESULT")] |
| | | public class QcIssueResults |
| | | { |
| | | //SEQ_MES_SCZZD |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_QCISSUE_RESULT")] |
| | | public decimal Id { get; set; } |
| | | |
| | | //æ¥ææ£éªåå· |
| | | [SugarColumn(ColumnName = "RELEASE_NO")] |
| | | public string? ReleaseNo { get; set; } |
| | | |
| | | //æµç¨å· |
| | | [SugarColumn(ColumnName = "INSTANCEID")] |
| | | public string? INSTANCEID { get; set; } |
| | | |
| | | //å¤çç»æ |
| | | [SugarColumn(ColumnName = "FREVIEW")] |
| | | public string? FReview { get; set; } |
| | | |
| | | //å¼å¸¸å¤ç½®åæ¯å¦è¢«æç» |
| | | [SugarColumn(ColumnName = "QCSTATU")] |
| | | public string? QcStatu { get; set; } |
| | | |
| | | //ç³è¯·æ°é |
| | | [SugarColumn(ColumnName = "APPLICATIONNUM")] |
| | | public string? APPLICATIONNUM { get; set; } |
| | | |
| | | //ä¸è¯åå |
| | | [SugarColumn(ColumnName = "BADCAUSES")] |
| | | public string? BADCAUSES { get; set; } |
| | | |
| | | //æå±è½¦é´ |
| | | [SugarColumn(ColumnName = "BELONGINGWORKSHOP")] |
| | | public string? BELONGINGWORKSHOP { get; set; } |
| | | |
| | | //è¯å®¡ç¶æ |
| | | [SugarColumn(ColumnName = "REVIEWSTATUS")] |
| | | public string? REVIEWSTATUS { get; set; } |
| | | |
| | | //ç©æåç§° |
| | | [SugarColumn(ColumnName = "ITEMNAME")] |
| | | public string? ITEMNAME { get; set; } |
| | | |
| | | //ç©æç¼ç |
| | | [SugarColumn(ColumnName = "ITEMNO")] |
| | | public string? ITEMNO { get; set; } |
| | | |
| | | //ä¾åºååç§° |
| | | [SugarColumn(ColumnName = "SUPPLIERNAME")] |
| | | public string? SUPPLIERNAME { get; set; } |
| | | |
| | | //夿³¨ |
| | | [SugarColumn(ColumnName = "REMARK")] |
| | | public string? REMARK { get; set; } |
| | | |
| | | //产åè´¨éç¶åµåç³è¯·åå |
| | | [SugarColumn(ColumnName = "APPLICATIONRESON")] |
| | | public string? APPLICATIONRESON { get; set; } |
| | | |
| | | } |