12 lines
368 B
C#
12 lines
368 B
C#
namespace Tnb.BasicData.Entities.Dto
|
|
{
|
|
public class TranUnitOutput
|
|
{
|
|
public string material_id { get; set; }
|
|
public string erp_unit_id { get; set; }
|
|
public decimal tran_qty1 { get; set; }
|
|
public decimal tran_qty2 { get; set; }
|
|
public decimal tran_qty3 { get; set; }
|
|
public decimal tran_qty4 { get; set; }
|
|
}
|
|
} |