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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Frame.Data.Entity { public class RCVData { public string RcvNo { get; set; } public string CreateUser { get; set; } public string StartTime { get; set; } public string EndTime { get; set; } }
public class CheckData { public string Type { get; set; } public string Message { get; set; } public string VoucherNO { get; set; } public string Year { get; set; } public string VoucherRow { get; set; } public string InvCode { get; set; } public string WorkPoint { get; set; } public string WHCode { get; set; } public string LotNO { get; set; } public string Sign { get; set; } public string WHType { get; set; } public string SOCode { get; set; } public string SORow { get; set; } public string VenCode { get; set; } public string CusCode { get; set; } public string ProjectCode { get; set; } public decimal QuantitySAP { get; set; } public decimal Quantity { get; set; } public string ComUnitCode { get; set; } public string NullSign { get; set; } public string DifferentSign { get; set; } public string DeleteSign { get; set; } public string ActualUser { get; set; } public DateTime ActualTime { get; set; } public string ModifyUser { get; set; } public DateTime ModifyTime { get; set; } public string DifferentVoucherNO { get; set; } public string DifferentYear { get; set; } public string DifferentVoucherRow { get; set; } public string DifferentUser { get; set; } public DateTime DifferentTime { get; set; } } }
|