using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Castle.Core.Resource;
|
using NetTaste;
|
|
namespace WIDESEAWCS_Model.Models.ERP
|
{
|
public class dtos
|
{
|
public dto dto { get; set; } = new dto();
|
}
|
|
public class dto
|
{
|
public BusiType BusiType { get; set; } = new BusiType();
|
public Warehouse Warehouse { get; set; } = new Warehouse();
|
public string VoucherDate { get; set; }
|
public List<RDRecordDetails> RDRecordDetails { get; set; } = new List<RDRecordDetails>();
|
public string Code { get; set; }
|
public string Memo { get; set; }
|
public string ExternalCode { get; set; }
|
public VoucherType VoucherType { get; set; } = new VoucherType();
|
}
|
public class Partner
|
{
|
public string Code { get; set; }
|
}
|
public class VoucherType
|
{
|
public string Code { get; set; }
|
}
|
public class BusiType
|
{
|
public string Code { get; set; }
|
}
|
public class Warehouse
|
{
|
public string Code { get; set; }
|
}
|
public class RDRecordDetails
|
{
|
public string ExpiryDate { get; set; }
|
public int Price { get; set; }
|
public string Batch { get; set; }
|
public int Amount { get; set; }
|
public int BaseQuantity { get; set; }
|
public string Code { get; set; }
|
public Inventory Inventory { get; set; } = new Inventory();
|
}
|
public class Inventory
|
{
|
public string Code { get; set; }
|
}
|
}
|