| | |
| | | [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 = "PROCESSNO")] |
| | | public string? ProcessNo { get; set; } |
| | | |
| | | //供应商 |
| | | //处理结果 |
| | | [SugarColumn(ColumnName = "FREVIEW")] |
| | | public string? FReview { get; set; } |
| | | |
| | | //异常处置单是否被拒绝 |
| | | [SugarColumn(ColumnName = "QCSTATU")] |
| | | public string? QcStatu { get; set; } |
| | | |
| | | //品质部审核及确定不合格 |
| | | [SugarColumn(ColumnName = "QCREMARK")] |
| | | public string? QCREMARK { get; set; } |
| | | |
| | | //挑选内容 |
| | | [SugarColumn(ColumnName = "SELECTREMARK")] |
| | | public string? SELECTREMARK { get; set; } |
| | | |
| | | //日期 |
| | | [SugarColumn(ColumnName = "DATA")] |
| | | public decimal? DATA { get; set; } |
| | | |
| | | //采购订单号 |
| | | [SugarColumn(ColumnName = "CGORDER")] |
| | | public string? CGORDER { get; set; } |
| | | |
| | | //送检单位 |
| | | [SugarColumn(ColumnName = "SJPLACE")] |
| | | public string? SJPLACE { get; set; } |
| | | |
| | | //日期 |
| | | [SugarColumn(ColumnName = "NUM")] |
| | | public decimal? NUM { get; set; } |
| | | |
| | | //报废备注 |
| | | [SugarColumn(ColumnName = "BFREMARK")] |
| | | public string? BFREMARK { get; set; } |
| | | |
| | | //退货备注 |
| | | [SugarColumn(ColumnName = "THREMARK")] |
| | | public string? THREMARK { get; set; } |
| | | |
| | | //是否涉及特采 |
| | | [SugarColumn(ColumnName = "TCSTATU")] |
| | | public string? TCSTATU { get; set; } |
| | | |
| | | //规格型号 |
| | | [SugarColumn(ColumnName = "MODEL")] |
| | | public string? MODEL { get; set; } |
| | | |
| | | //让步接收内容 |
| | | [SugarColumn(ColumnName = "RBJSREMARK")] |
| | | public string? RBJSREMARK { get; set; } |
| | | |
| | | //结果返回时间 |
| | | [SugarColumn(ColumnName = "RETURN_DATE")] |
| | | public DateTime? RETURN_DATE { get; set; } |
| | | |
| | | } |