Files
2024-06-11 13:41:56 +08:00

26 lines
765 B
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 CarryBatchBindInput
{
public List<CarryBindInput> carryBindInputs { get; set; }
}
public class CarryBindInput
{
public string? org { get; set; }
public string? create_id { get; set; }
public string? carry_id { get; set; }
public string? carry_code { get; set; }
public string? carrystd_id { get; set; }
public string? membercarry_id { get; set; }
public string? membercarry_code { get; set; }
public string? source_id { get; set; }
public string? source_code { get; set; }
}
}