123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
-
-
-
- public class TasksQz : BaseViewModel
- {
- [Required, MaxLength(50)]
- public string C_StoreCode { get; set; }
- [Key]
- public Guid Id { get; set; } = Guid.NewGuid();
-
-
-
- [MaxLength(200)]
- public string Name { get; set; }
-
-
-
- [MaxLength(200)]
- public string JobGroup { get; set; }
-
-
-
- [MaxLength(200)]
- public string Cron { get; set; }
-
-
-
- [MaxLength(200)]
- public string AssemblyName { get; set; }
-
-
-
- [MaxLength(200)]
- public string ClassName { get; set; }
-
-
-
- [MaxLength(1000)]
- public string Remark { get; set; }
-
-
-
- [Required]
- public int RunTimes { get; set; }
-
-
-
- [Required]
- public DateTime? BeginTime { get; set; }
-
-
-
- [Required]
- public DateTime? EndTime { get; set; }
-
-
-
- [Required]
- public int TriggerType { get; set; }
-
-
-
- public int IntervalSecond { get; set; }
-
-
-
- public int CycleRunTimes { get; set; }
-
-
-
- public bool IsStart { get; set; } = false;
-
-
-
- public string JobParams { get; set; }
- public bool? IsDeleted { get; set; }
-
-
-
- public DateTime CreateTime { get; set; } = DateTime.Now;
-
-
-
- public Guid CreateBy { get; set; }
-
-
-
- public List<TaskInfoDto> Triggers { get; set; }
- public virtual ICollection<TaskInfoDto> TaskInfoDtos { get; set; }
-
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
|