|
|
|
|
using Myshipping.Application.Entity;
|
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Policy;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务分享链接
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("task_share_link")]
|
|
|
|
|
[Description("任务分享链接")]
|
|
|
|
|
public class TaskShareLinkInfo : DBEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TASK_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BUSI_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 生成链接访问KEY
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SHARE_LINK_KEY { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 访问URL
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string URL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 失效时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime EXPIRE_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态 ACTIVE-有效的,EXPIRE-失效,CANCEL-取消,REPEAT_KEY-重复KEY被取消
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string STATUS { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否需要用户反馈意见 true-是 false-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_USER_FEEDBACK { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否手工设定 true-是,false-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_MANUAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 自增KEY计数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<long> INCREMENT_KEY { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否用户人工确认 1-人工确认(用户在访问链接上做了反馈) 0-不是人工确认
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_USER_MANUAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户选择意见
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string USER_OPINION { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户意见内容
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string USER_OPINION_TXT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户确认时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> CONFIRM_DATE { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|