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