namespace iWareSql.DBModel
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("TasksQz")]
|
public partial class TasksQz
|
{
|
public int Id { get; set; }
|
|
[StringLength(200)]
|
public string Name { get; set; }
|
|
[StringLength(200)]
|
public string JobGroup { get; set; }
|
|
[StringLength(200)]
|
public string Cron { get; set; }
|
|
[StringLength(200)]
|
public string AssemblyName { get; set; }
|
|
[StringLength(200)]
|
public string ClassName { get; set; }
|
|
[StringLength(1000)]
|
public string Remark { get; set; }
|
|
public int RunTimes { get; set; }
|
|
public DateTime BeginTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public int TriggerType { get; set; }
|
|
public int IntervalSecond { get; set; }
|
|
public int CycleRunTimes { get; set; }
|
|
public bool IsStart { get; set; }
|
|
[Required]
|
[StringLength(255)]
|
public string JobParams { get; set; }
|
|
public bool? IsDeleted { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
}
|
}
|