using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 结算周期
///
public enum EnumSettlementCycle
{
///
/// 月结
///
Month = 10,
///
/// 周结
///
Week = 20,
///
/// 日结
///
Day = 30
}
}