namespace Myshipping.Core.Service
{
public class DjyTenantParamValueOutput
{
public string ParaCode { get; set; }
public string ParaName { get; set; }
public string ParaType { get; set; }
public string ParaValue { get; set; }
}
///
/// 列表输出
///
public class DjyTenantParamValueListOutput
{
///
/// id
///
public long Id { get; set; }
///
/// 参数类别
///
public string ParaCode { get; set; }
///
/// 类别名称
///
public string ParaName { get; set; }
///
/// 租户id
///
public long? TenantId { get; set; }
///
/// 租户名称
///
public string TenantName { get; set; }
///
/// 参数值
///
public string ItemCode { get; set; }
///
/// 参数值名称
///
public string ItemCodeName { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 排序
///
public int? Sort { get; set; }
}
}