26 lines
863 B
C#
26 lines
863 B
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AUTS.Domain.Application
|
|||
|
|
{
|
|||
|
|
public class TBL_shipping
|
|||
|
|
{
|
|||
|
|
public int ID { get; private set; }
|
|||
|
|
public string ShippingCode { get; private set; }
|
|||
|
|
public string Creator { get; private set; }
|
|||
|
|
public DateTime CreateDateTime { get; private set; }
|
|||
|
|
public DateTime StartDateTime { get; private set; }
|
|||
|
|
public DateTime EndDateTime { get; private set; }
|
|||
|
|
public string Loader { get; private set; }
|
|||
|
|
public int Status { get; private set; }
|
|||
|
|
public string ShippingType { get; private set; }
|
|||
|
|
public string Destination { get; private set; }
|
|||
|
|
public string Voucher { get; private set; }
|
|||
|
|
public string Remark { get; private set; }
|
|||
|
|
}
|
|||
|
|
}
|