19 lines
520 B
C#
19 lines
520 B
C#
|
|
using System;
|
|||
|
|
using Sozsoft.Platform.Enums;
|
|||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Entities;
|
|||
|
|
|
|||
|
|
public class BackgroundWorker : FullAuditedEntity<Guid>
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string Cron { get; set; }
|
|||
|
|
public WorkerTypeEnum WorkerType { get; set; }
|
|||
|
|
public bool IsActive { get; set; }
|
|||
|
|
public string DataSourceCode { get; set; }
|
|||
|
|
public string BeforeSp { get; set; }
|
|||
|
|
public string AfterSp { get; set; }
|
|||
|
|
public string Options { get; set; }
|
|||
|
|
}
|
|||
|
|
|