using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.FromERP.Model { public class CustomerInputDto { public string CustomerId { get; set; } public string CusCode { get; set; } public string CusName { get; set; } public string BeginTime { get; set; } public string EndTime { get; set; } } }