using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Entity.Constraints
{
///
/// 采购收货、销售发货 接口约束
///
public interface IPurchaseAndSaleEntity
{
public string material_id { get; set; }
///
/// 已到货数量
///
public decimal purchase_prqty { get; set; }
///
/// 采购数量
///
public decimal purchase_qty { get; set; }
///
/// 本次到货数量
///
public decimal purchase_arriveqty { get; set; }
///
/// 执行状态
///
public string line_status { get; set; }
public string modify_id { get; set; }
public DateTime? modify_time { get; set; }
}
}