wet 1 year ago
commit d4b8c35083

@ -160,6 +160,10 @@ namespace Myshipping.Application.Entity
/// </summary>
public string LINKMAN { get; set; }
/// <summary>
/// 危险品联系电话
/// </summary>
public string DTEL { get; set; }
/// <summary>
/// 温度单位
/// </summary>
public string TEMPID { get; set; }

@ -324,6 +324,11 @@ namespace Myshipping.Application.Entity
[Description("危险品联系人")]
public string LINKMAN { get; set; }
/// <summary>
/// 危险品联系电话
/// </summary>
[Description("危险品联系电话")]
public string DTEL { get; set; }
/// <summary>
/// 温度单位
/// </summary>
[Description("温度单位")]

@ -229,6 +229,10 @@ namespace Myshipping.Application
/// </summary>
public string LINKMAN { get; set; }
/// <summary>
/// 危险品联系电话
/// </summary>
public string DTEL { get; set; }
/// <summary>
/// 温度单位
/// </summary>
public string TEMPID { get; set; }

@ -267,6 +267,10 @@ namespace Myshipping.Application
/// </summary>
public string LINKMAN { get; set; }
/// <summary>
/// 危险品联系电话
/// </summary>
public string DTEL { get; set; }
/// <summary>
/// 温度单位
/// </summary>
public string TEMPID { get; set; }

@ -384,7 +384,7 @@ public class AuthService : IAuthService, IDynamicApiController, ITransient
}
var user = _sysUserRep.AsQueryable().Filter(null, true).First(u => u.DjyUserId == userId);
if (tenant == null)
if (user == null)
{
throw Oops.Bah($"{showname}不存在,请先加入公司{comname}");
}

Loading…
Cancel
Save