You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
856 B

using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
namespace WmsWebApi.StockMove {
public class SSDetailDto : EntityDto
{
public string BarCode { get; set; }
public string Batch { get; set; }
public string PartCode { get; set; }
public string PartDesc { get; set; } = "";
public string PpBillNum { get; set; }
public decimal PpLine { get; set; } = 0;
public string ProduceDate { get; set; }
public decimal Qty { get; set; }
public string ReceiveDate { get; set; }
public string ScrapQty { get; set; }
public string ShiftName { get; set; }
public string State { get; set; }
public string FromLocCode { get; set; }
public string ToLocCode { get; set; }
public string TraceBackCode { get; set; }
public string Unit { get; set; }
}
}