You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
658 B
C#

using DS.WMS.Core.HangfireJob.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.QuarztJobs.Dtos
{
public class WSLWeeklyModel
{
public string Date { get; set; }
public string Month { get; set; }
public IEnumerable<WSLWeeklyItem>? List { get; set; }
}
public class WSLWeeklyItem
{
public long CustomerId { get; set; }
public string? MBLNO { get; set; }
public string? CustomerNo { get; set; }
public string? ETD { get; set; }
public string? Status { get; set; }
}
}