using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace VueWebCoreApi.Models
{
public class AppPurchOrderSave
{
///
/// 预计到货日期
///
public string hacceptdate { get; set; }
///
/// 部门编码
///
public string hdepartmentcode { get; set; }
///
/// 供应商编码
///
public string hcustomercode { get; set; }
///
/// 批次号
///
public string hbatchno { get; set; }
///
/// 源单单号(采购订单号)
///
public string hsourcebillno { get; set; }
///
/// 行号
///
public string rownumber { get; set; }
///
/// 物料编码
///
public string hpartcode { get; set; }
///
/// 订单数量
///
public string hplanqty { get; set; }
///
/// 到货数量
///
public string hqty { get; set; }
///
/// 物料是否需检验
///
public string hischeck { get; set; }
///
/// 条码信息
///
public List children { get; set; }
}
}