using Furion.DatabaseAccessor; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using System.ComponentModel; using Myshipping.Application.Entity; namespace DAJYun.Core.Entities { /// /// 任务比对记录报文表 /// [SugarTable("task_compare_record_msg")] [Description("任务比对记录报文表")] public class TaskCompareRecordMsgInfo { /// /// 主键 /// [SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)] public string PK_ID { get; set; } /// /// 业务主键 /// public string BUSI_ID { get; set; } /// /// 报文类型 MSG_JSON-请求报文JSON /// public string MSG_TYPE { get; set; } /// /// 报文JSON /// public string MSG_JSON { get; set; } } }