20 lines
461 B
C#
20 lines
461 B
C#
using JNPF.Common.Const;
|
||
using JNPF.Common.Contracts;
|
||
using SqlSugar;
|
||
|
||
namespace JNPF.TaskScheduler.Entitys.Entity;
|
||
|
||
/// <summary>
|
||
/// 定时任务
|
||
/// 版 本:V3.2
|
||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||
/// 日 期:2021-06-01 .
|
||
/// </summary>
|
||
[SugarTable("snowid")]
|
||
[Tenant(ClaimConst.TENANTID)]
|
||
public class SnowIdEntity : IEntity<string>
|
||
{
|
||
//[SugarColumn(ColumnName = "id")]
|
||
public string Id { get; set; }
|
||
}
|