调整Entity目录结构

This commit is contained in:
alex
2023-07-10 13:34:54 +08:00
parent 3f351cf23f
commit 8f9924e918
7 changed files with 2 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities
{
public interface IWmsCarryEntity
{
string carry_id { get; set; }
}
}