using HH.WMS.Entitys.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WMS.Entitys.Basic
|
{
|
/// <summary>
|
/// 销售出库实体
|
/// </summary>
|
public class K3_SalesDeliveryEntity
|
{
|
public SalesDelivery_Data Data { get; set; }
|
}
|
public class SalesDelivery_Data
|
{
|
public List<SalesDelivery_Page1> Page1 { get; set; }
|
public List<SalesDelivery_Page2> Page2 { get; set; }
|
|
}
|
public class SalesDelivery_Page1
|
{
|
//日期
|
public string Fdate { get; set; }
|
//销售业务类型
|
public object FMarketingStyle { get; set; }
|
//购货单位
|
public object FSupplyID { get; set; }
|
//销售方式
|
public object FSaleStyle { get; set; }
|
//编 号
|
public string FBillNo { get; set; }
|
//发货
|
public object FFManagerID { get; set; }
|
//保管
|
public object FSManagerID { get; set; }
|
//红蓝单标志
|
public int FROB { get; set; }
|
//审核标志
|
public int FStatus { get; set; }
|
//作废标志
|
public int FCancellation { get; set; }
|
}
|
|
public class SalesDelivery_Page2
|
{
|
//发货仓库
|
public object FDCStockID1 { get; set; }
|
//产品代码
|
public object FItemID { get; set; }
|
//单位
|
public object FUnitID { get; set; }
|
//数量
|
public string FQty { get; set; }
|
//实收数量
|
public string Fauxqty { get; set; }
|
//计划模式
|
public object FPlanMode { get; set; }
|
}
|
}
|