namespace iWareSql
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("SysJobDetail")]
|
public partial class SysJobDetail
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Id { get; set; }
|
|
[Required]
|
[StringLength(64)]
|
public string JobId { get; set; }
|
|
[StringLength(128)]
|
public string GroupName { get; set; }
|
|
[StringLength(128)]
|
public string JobType { get; set; }
|
|
[StringLength(128)]
|
public string AssemblyName { get; set; }
|
|
[StringLength(128)]
|
public string Description { get; set; }
|
|
public bool Concurrent { get; set; }
|
|
public bool annotation { get; set; }
|
|
public string Properties { get; set; }
|
|
public DateTime? UpdatedTime { get; set; }
|
|
public int CreateType { get; set; }
|
|
public string ScriptCode { get; set; }
|
}
|
}
|