OpenAuth.Net/OpenAuth.App/Jobs/Request/AddOrUpdateOpenJobReq.cs
yubaolee cf23d0025f 增加撤销与启动,详见:#I3ILBG
调整工程结构,采用模块化机制
2021-04-15 00:40:30 +08:00

59 lines
1.7 KiB
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using OpenAuth.Repository.Core;
namespace OpenAuth.App.Request
{
/// <summary>
/// 定时任务
/// </summary>
[Table("OpenJob")]
public partial class AddOrUpdateOpenJobReq
{
/// <summary>
/// Id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 任务名称
/// </summary>
public string JobName { get; set; }
/// <summary>
/// 任务执行方式0本地任务1外部接口任务
/// </summary>
public int JobType { get; set; }
/// <summary>
/// 任务地址
/// </summary>
public string JobCall { get; set; }
/// <summary>
/// 任务参数JSON格式
/// </summary>
public string JobCallParams { get; set; }
/// <summary>
/// CRON表达式
/// </summary>
public string Cron { get; set; }
/// <summary>
/// 任务运行状态0停止1正在运行2暂停
/// </summary>
public int Status { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
}