优化金蝶获取数据

This commit is contained in:
tongfei
2023-10-28 08:57:10 +08:00
parent 652cc6ef84
commit f4293f8862
12 changed files with 208 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Infrastructure
{
public interface ILoginRepositories
{
/// <summary>
/// 公司Id
/// </summary>
int CompanyId { get; set; }
}
}