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.
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 任务比对记录报文表
|
|
/// </summary>
|
|
[SugarTable("task_compare_record_msg")]
|
|
[Description("任务比对记录报文表")]
|
|
public class TaskCompareRecordMsgInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
public string PK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务主键
|
|
/// </summary>
|
|
|
|
public string BUSI_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报文类型 MSG_JSON-请求报文JSON
|
|
/// </summary>
|
|
|
|
public string MSG_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报文JSON
|
|
/// </summary>
|
|
public string MSG_JSON { get; set; }
|
|
}
|
|
}
|