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.
 
 
 
 
 

48 lines
1.8 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.Models
{
/// <summary>
/// 材料出库
/// </summary>
public class ICSMOIssueEdit: UniversalEditModel
{
public string ID { set; get; }
public string IssueCode { set; get; }
public string Sequence { set; get; }
public string SourceCode { set; get; }
public string SourceSequence { set; get; }
public string InvCode { set; get; }
public decimal Quantity { set; get; }
public decimal Amount { set; get; }
public decimal IssueQuantity { set; get; }
public string WHCode { set; get; }
public string Type { set; get; }
public string Status { set; get; }
public string CreatePerson { set; get; }
public DateTime CreateDateTime { set; get; }
public string IssueID { set; get; }
public string IssueDetailID { set; get; }
public string PickID { set; get; }
public string ApplyDetailID { set; get; }
public string ExtensionID { set; get; }
public string MUSER { set; get; }
public string MUSERName { set; get; }
public DateTime MTIME { set; get; }
public string WorkPoint { set; get; }
public string EATTRIBUTE { set; get; }
public string EATTRIBUTE2 { set; get; }
public string EATTRIBUTE3 { set; get; }
public string EATTRIBUTE4 { set; get; }
public string EATTRIBUTE5 { set; get; }
public string EATTRIBUTE6 { set; get; }
public string EATTRIBUTE7 { set; get; }
public string EATTRIBUTE8 { set; get; }
public string EATTRIBUTE9 { set; get; }
public string EATTRIBUTE10 { set; get; }
}
}