sunpengfei
6 天以前 637bff638903af269e199434df720290dc357c12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 查询任务选择器数据
    /// </summary>
    [Resource([EnumResourceController.FlexJobServerTask])]
    public class GetTaskSelectQuery : SelectQuery<Guid, GetTaskSelectQueryOption>
    {
        /// <summary>
        /// 关键字
        /// </summary>
        public string Keywords { get; set; }
    }
 
 
    public class GetTaskSelectQueryOption
    {
        /// <summary>
        /// 任务Id
        /// </summary>
        public Guid Id { get; set; }
 
        /// <summary>
        /// 任务单号
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 任务名称
        /// </summary>
        public string Name { get; set; }
    }
}