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; using System.Threading.Tasks;
namespace ICSSoft.ERPWMS.Entity { public class GetPurchaseReturnEntity { public string ID { get; set; }
//退货单
public string ReturnCode { get; set; }
//退货单行号
public int ReturnLine { get; set; }
//物料编码
public string InvCode { get; set; }
//退货数量
public decimal Quantity { get; set; }
//原采购订单号
public string PO { get; set; }
//原采购订单行号
public int POLine { get; set; }
//类型(3:发)
//public string TransType { get; set; }
//业务类型(3:采购退货)
//public string BusinessCode { get; set; }
//操作人
public string MUSER { get; set; }
//操作人名称
public string MUSERName { get; set; }
//操作时间
public DateTime? dModifyDate { get; set; }
//站点
public string WorkPoint { get; set; }
//单据状态
public string Status { get; set; } } }
|