sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/BackgroundWorker.cs

19 lines
520 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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; }
}