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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Myshipping.Application.Entity ;
using Myshipping.Core.Entity ;
using SqlSugar ;
using System ;
using System.Collections.Generic ;
using System.ComponentModel ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace Myshipping.Application
{
/// <summary>
/// 任务分享链接动态数据
/// </summary>
[SugarTable("task_share_link_dynamic_data")]
[Description("任务分享链接动态数据")]
public class TaskShareLinkDynamicDataInfo : DBEntityTenant
{
/// <summary>
/// 分享主键
/// </summary>
public long SHARE_ID { get ; set ; }
/// <summary>
/// 数据类型 DISCLAIMERS-免责声明
/// </summary>
public string DATA_TYPE { get ; set ; }
/// <summary>
/// 数据详情
/// </summary>
public string DATA_MSG { get ; set ; }
/// <summary>
/// 数据报文类型 JSON, HTML
/// </summary>
public string DATA_MSG_TYPE { get ; set ; }
}
}