sunpengfei
2025-09-01 611af5472b33cbe81a1433ab29e26502a9aac795
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 空闲时间
    /// </summary>
    public enum EnumPersonalFreeTime
    {
        /// <summary>
        /// 不限
        /// </summary>
        NoLimit = 10,
        /// <summary>
        /// 寒暑假
        /// </summary>
        WinterSummerVacations = 20,
        /// <summary>
        /// 节假日
        /// </summary>
        FestivalAndHoliday = 30,
        /// <summary>
        /// 周六日
        /// </summary>
        Weekend = 40,
        /// <summary>
        /// 工作日
        /// </summary>
        Weekday = 50
    }
}