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.

35 lines
827 B
C#

using Myshipping.Application.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_store_msg")]
[Description(" 任务报文表")]
public class TaskStoreMsgInfo : TaskManageDbEntity
{
/// <summary>
/// 任务主键(父主键)
/// </summary>
public string TASK_PKID { get; set; }
/// <summary>
/// 报文JSON
/// </summary>
public string MSG_JSON { get; set; }
/// <summary>
/// 报文类型 BC_MSG-订舱确认报文
/// </summary>
public string MSG_TYPE { get; set; }
}
}