34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
public class OtherOutstockAddDetailInput
|
|
{
|
|
public string? department { get; set; }
|
|
public string? salesman { get; set; }
|
|
public string? warehouse_code { get; set; }
|
|
public string source_id { get; set; }
|
|
public string source_detail_id { get; set; }
|
|
|
|
public string source_bill_code { get; set; }
|
|
public List<OtherOutstockAddDetailDetail> details { get; set; }
|
|
}
|
|
public class OtherOutstockAddDetailDetail
|
|
{
|
|
public string? material_id { get; set; }
|
|
public string? material_code { get; set; }
|
|
public string? material_name { get; set; }
|
|
public string? unit { get; set; }
|
|
public decimal? qty { get; set; }
|
|
public decimal? actual_outstock_qty { get; set; }
|
|
public string batchno { get; set; }
|
|
public string auxprop_xph { get; set; }
|
|
public string auxprop_gys { get; set; }
|
|
|
|
}
|
|
}
|