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