using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 企业钱包签约状态 /// public enum EnumEnterpriseWalletSignStatus { /// /// 未签约 /// Wait = 1, /// /// 申请中 /// Apply = 10, /// /// 已签约 /// Normal = 100, /// /// 终止 /// Stop = 999 } }