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.
71 lines
1.7 KiB
C#
71 lines
1.7 KiB
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_per_bill_base")]
|
|
[Description("任务单票账单主信息")]
|
|
public class TaskPerBillBaseInfo : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 任务主键(父主键)
|
|
/// </summary>
|
|
public string TASK_PKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
public string MBL_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票号
|
|
/// </summary>
|
|
public string INVOICE_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 取消号
|
|
/// </summary>
|
|
public string CANCEL_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合计金额
|
|
/// </summary>
|
|
public decimal TOTAL_AMOUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否东胜接收 1-是 0-否
|
|
/// </summary>
|
|
public int IS_DONGSH_RECV { get; set; } = 0;
|
|
|
|
|
|
/// <summary>
|
|
/// 是否东胜接收回执 1-是 0-否
|
|
/// </summary>
|
|
public int IS_DONGSH_RESULT { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 东胜接收时间
|
|
/// </summary>
|
|
public Nullable<DateTime> DONGSH_RECV_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 东胜回执时间
|
|
/// </summary>
|
|
public Nullable<DateTime> DONGSH_RESULT_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 东胜反馈原因
|
|
/// </summary>
|
|
public string DONGSH_RECV_REASON { get; set; }
|
|
}
|
|
}
|