初始化项目
This commit is contained in:
25
AUTS.Domain/Application/TBL_shipping.cs
Normal file
25
AUTS.Domain/Application/TBL_shipping.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user