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.

67 lines
1.7 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}