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.

39 lines
931 B
C#

using DS.Module.Core.Data;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
/// <summary>
/// 触发器主表
/// </summary>
[SqlSugar.SugarTable("status_trigger_base", "触发器主表")]
public class StatusTriggerBaseInfo : BaseModelV2<long>
{
/// <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; }
}
}