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.
28 lines
626 B
C#
28 lines
626 B
C#
using System;
|
|
using Myshipping.Core;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
/// <summary>
|
|
/// 订舱自定义配置输出参数
|
|
/// </summary>
|
|
public class DjyUserConfigDto
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public long? Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型(列表显示列、查询条件自定义等)
|
|
/// </summary>
|
|
public DjyUserConfigType Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 配置数据json
|
|
/// </summary>
|
|
public string ConfigJson { get; set; }
|
|
|
|
}
|
|
}
|