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.
|
|
|
|
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 Furion.DistributedIDGenerator;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using Myshipping.Application.Entity;
|
|
|
|
|
|
|
|
|
|
namespace DAJYun.Core.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务下货纸比对明细表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("task_shipping_order_compare_detail")]
|
|
|
|
|
[Description("任务下货纸比对明细表")]
|
|
|
|
|
public class TaskShippingOrderCompareDetailInfo : TaskManageDbEntity
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 比对任务主键(父主键)
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string P_PKID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 比任务主键(父主键)
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string TASK_PKID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字段代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string FIELD_CODE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字段名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string FIELD_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 请求值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string REQ_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目标值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TARGET_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否比对成功 1-成功 -1-不一致 0-暂存
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int IS_COMPARE_SUCC { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 比对详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string COMPARE_NOTE { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|