using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 查询任务选择器数据
///
[Resource([EnumResourceController.FlexJobServerTask])]
public class GetTaskSelectQuery : SelectQuery
{
///
/// 关键字
///
public string Keywords { get; set; }
}
public class GetTaskSelectQueryOption
{
///
/// 任务Id
///
public Guid Id { get; set; }
///
/// 任务单号
///
public string Code { get; set; }
///
/// 任务名称
///
public string Name { get; set; }
}
}