6 changed files with 144 additions and 20 deletions
@ -0,0 +1,27 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Win_in.Sfs.Wms.Store.Notes.ProductRecycleNotes.DTOs; |
|||
public class ProductRecycleNoteDetailExtendDto |
|||
{ |
|||
|
|||
[Display(Name ="报废类型")] |
|||
public string Type { get; set; } |
|||
[Display(Name = "物料代码")] |
|||
public string ItemCode { get; set; } |
|||
[Display(Name = "报废库位")] |
|||
|
|||
public string LocCode { get; set; } |
|||
[Display(Name = "数量")] |
|||
public Decimal Qty { get; set; } |
|||
|
|||
[Display(Name = "报废原因")] |
|||
public string Reason { get; set; } |
|||
|
|||
|
|||
|
|||
} |
Loading…
Reference in new issue