初始化项目

This commit is contained in:
2025-11-20 13:11:05 +08:00
commit d5edc62c08
2412 changed files with 2201918 additions and 0 deletions

View 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; }
}
}