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.

47 lines
1.0 KiB
C#

using Myshipping.Application.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 : TaskManageDbEntity
{
/// <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; }
}
}