sunpengfei
2025-08-11 033a50363600a31a9f46dac0c852c4534a150101
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 计费方式
    /// </summary>
    public enum EnumBillingMethod
    {
        /// <summary>
        /// 按月
        /// </summary>
        Month = 10,
        /// <summary>
        /// 按天
        /// </summary>
        Day = 20,
        /// <summary>
        /// 按时
        /// </summary>
        Hour = 30,
        /// <summary>
        /// 计件
        /// </summary>
        Piece = 40
    }
}