using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 用户和租户信息
///
public class UserTendDto
{
///
/// 用户ID
///
public long userId { get; set; }
///
/// 用户名称
///
public string userName { get; set; }
///
/// 租户ID
///
public long tendId { get; set; }
///
/// 租户名称
///
public string tenantName { get; set; }
}
}