| | |
| | | |
| | | namespace MES.Service.Dto.service; |
| | | |
| | | [SugarTable("V_MES_SJ")] //用于SqlSugar |
| | | [SugarTable("QS_ITEM_IPI_REQ")] //用于SqlSugar |
| | | public class SJPageResult : Page |
| | | { |
| | | public decimal? Id { get; set; } |
| | |
| | | [SugarColumn(ColumnName = "STATUS_DATE")] //用于SqlSugar |
| | | public DateTime? StatusDate { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? FName { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? Result { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "STATUS_USER")] //用于SqlSugar |
| | |
| | | [SugarColumn(ColumnName = "ITEM_NO")] //用于SqlSugar |
| | | public string? ItemNo { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "DAA001")] //用于SqlSugar |
| | | public string? daa001 { get; set; } |
| | | //[SugarColumn(ColumnName = "DAA001")] //用于SqlSugar |
| | | //public string? daa001 { get; set; } |
| | | |
| | | //LINE |
| | | [SugarColumn(ColumnName = "LINE")] //用于SqlSugar |
| | |
| | | [SugarColumn(ColumnName = "Remarks")] //用于SqlSugar |
| | | public string? Remarks { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品名称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DAA003")] |
| | | public string? Daa003 { get; set; } |
| | | ///// <summary> |
| | | ///// 产品名称 |
| | | ///// </summary> |
| | | //[SugarColumn(ColumnName = "DAA003")] |
| | | //public string? Daa003 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品规格 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DAA004")] |
| | | public string? Daa004 { get; set; } |
| | | ///// <summary> |
| | | ///// 产品规格 |
| | | ///// </summary> |
| | | //[SugarColumn(ColumnName = "DAA004")] |
| | | //public string? Daa004 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工单数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DAA008")] |
| | | public decimal? Daa008 { get; set; } |
| | | ///// <summary> |
| | | ///// 工单数量 |
| | | ///// </summary> |
| | | //[SugarColumn(ColumnName = "DAA008")] |
| | | //public decimal? Daa008 { get; set; } |
| | | } |