You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
711 B
C#
32 lines
711 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 用户和租户信息
|
|
/// </summary>
|
|
public class UserTendDto
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public long userId { get; set; }
|
|
/// <summary>
|
|
/// 用户名称
|
|
/// </summary>
|
|
public string userName { get; set; }
|
|
/// <summary>
|
|
/// 租户ID
|
|
/// </summary>
|
|
public long tendId { get; set; }
|
|
/// <summary>
|
|
/// 租户名称
|
|
/// </summary>
|
|
public string tenantName { get; set; }
|
|
}
|
|
}
|