sunpengfei
7 天以前 44cdf09012d27e12c3d113f9a3ffdc9ddc2853ad
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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 GetPersonalCancelTaskInfosQuery : PagedListQuery<GetPersonalCancelTaskInfosQueryResult, GetPersonalCancelTaskInfosQueryResultItem>
    {
    }
 
    /// <summary>
    /// 我的已取消分页列表-结果
    /// </summary>
    public class GetPersonalCancelTaskInfosQueryResult : PagedListQueryResult<GetPersonalCancelTaskInfosQueryResultItem>
    {
 
    }
 
    /// <summary>
    /// 我的已取消分页列表-结果-项
    /// </summary>
    public class GetPersonalCancelTaskInfosQueryResultItem
    {
        public GetPersonalCancelTaskInfosQueryResultItem()
        {
            Benefits = [];
        }
 
        /// <summary>
        /// 任务Id
        /// </summary>
        public Guid Id { get; set; }
 
        /// <summary>
        /// 任务名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 任务开始时间
        /// </summary>
        public DateTime BeginTime { get; set; }
 
        /// <summary>
        /// 任务结束时间
        /// </summary>
        public DateTime EndTime { get; set; }
 
        /// <summary>
        /// 结算周期
        /// </summary>
        public EnumBillingMethod BillingMethod { get; set; }
 
        /// <summary>
        /// 服务费
        /// </summary>
        public decimal ServiceFee { get; set; }
 
        /// <summary>
        /// 结算方式
        /// </summary>
        public EnumSettlementCycle SettlementCycle { get; set; }
 
        /// <summary>
        /// 福利
        /// </summary>
        public List<GetTaskInfoQueryResultBenefit> Benefits { get; set; }
 
        /// <summary>
        /// 任务地点名称
        /// </summary>
        public string AddressName { get; set; }
 
    }
}