qrtz_blob_triggers.cs
666 Bytes
using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;
namespace Hh.Mes.POJO.Entity
{
public partial class qrtz_blob_triggers
{
/// <summary>
///
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public Byte[] blob_data { get; set; }
/// <summary>
///
/// </summary>
public string sched_name { get; set; }
/// <summary>
///
/// </summary>
public string trigger_name { get; set; }
/// <summary>
///
/// </summary>
public string trigger_group { get; set; }
}
}