1 changed files with 82 additions and 0 deletions
@ -0,0 +1,82 @@ |
|||
using System; |
|||
using System.ComponentModel.DataAnnotations; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Web.Pages.Z_Business.StoreRecycledMaterialReceiptNoteDetail.StoreRecycledMaterialReceiptNoteDetail.ViewModels; |
|||
|
|||
public class CreateEditStoreRecycledMaterialReceiptNoteDetailViewModel |
|||
{ |
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailArriveDate")] |
|||
public DateTime ArriveDate { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailContainerCode")] |
|||
public string? ContainerCode { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailExpireDate")] |
|||
public DateTime ExpireDate { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemCode")] |
|||
public string ItemCode { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemDesc1")] |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemDesc2")] |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemName")] |
|||
public string? ItemName { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationArea")] |
|||
public string? LocationArea { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationCode")] |
|||
public string LocationCode { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationErpCode")] |
|||
public string LocationErpCode { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationGroup")] |
|||
public string? LocationGroup { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailLot")] |
|||
public string? Lot { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailMaster")] |
|||
public StoreRecycledMaterialReceiptNote Master { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailMasterId")] |
|||
public Guid MasterId { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailNumber")] |
|||
public string Number { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailPackingCode")] |
|||
public string PackingCode { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailProduceDate")] |
|||
public DateTime ProduceDate { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailQty")] |
|||
public decimal Qty { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailReasonCode")] |
|||
public string? ReasonCode { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailRemark")] |
|||
public string? Remark { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailStatus")] |
|||
public string Status { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailStdPackQty")] |
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailSupplierBatch")] |
|||
public string? SupplierBatch { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailUom")] |
|||
public string Uom { get; set; } |
|||
|
|||
[Display(Name = "StoreRecycledMaterialReceiptNoteDetailWarehouseCode")] |
|||
public string WarehouseCode { get; set; } |
|||
} |
Loading…
Reference in new issue