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.
|
|
|
|
using DS.Module.Core;
|
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主要存储用分享数据填充预设模板后的数据或预设声明的内容
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("task_share_link_dynamic_data", "主要存储用分享数据填充预设模板后的数据或预设声明的内容")]
|
|
|
|
|
public class TaskShareLinkDynamicData : BaseModelV2<long>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 分享主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "分享主键", IsNullable = true)]
|
|
|
|
|
public long? ShareId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据类型 DISCLAIMERS-免责声明
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "数据类型 DISCLAIMERS-免责声明", IsNullable = true, Length = 20)]
|
|
|
|
|
public string? DataType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "数据详情", IsNullable = true)]
|
|
|
|
|
public string? DataMsg { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据报文类型 JSON,HTML
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "数据报文类型 JSON,HTML", IsNullable = true, Length = 20)]
|
|
|
|
|
public string? DataMsgType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|