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.Entity.PU_ArrivalVouch { public class PU_ArrivalVouchs { /// <summary>
/// 到货单表体主键ID
/// </summary>
public string AutoID { get; set; }
/// <summary>
/// 主计量数量
/// </summary>
public decimal iQuantity { get; set; }
/// <summary>
/// 辅计量数量
/// </summary>
public decimal iNum { get; set; }
/// <summary>
/// 批次
/// </summary>
public string cBatch { get; set; }
/// <summary>
/// 物料编号
/// </summary>
public string cInvCode { get; set; }
} }
|