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