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.
49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using Furion.DistributedIDGenerator;
|
|
using Myshipping.Application.Entity.TrackingSystem;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 触发器主表
|
|
/// </summary>
|
|
[SugarTable("status_trigger_base")]
|
|
[Description("触发器主表")]
|
|
public class StatusTriggerBaseInfo : TrackingSystemDbEntity
|
|
{
|
|
public StatusTriggerBaseInfo()
|
|
{
|
|
PK_ID = IDGen.NextID().ToString();
|
|
|
|
CreatedTime = DateTime.Now;
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 触发器代码
|
|
/// </summary>
|
|
public string STATUS_TRIGGER_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器名称
|
|
/// </summary>
|
|
public string STATUS_TRIGGER_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器说明
|
|
/// </summary>
|
|
public string STATUS_TRIGGER_NOTE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public int IS_ENABLE { get; set; }
|
|
}
|
|
}
|