using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 任务推荐状态 /// public enum EnumTaskRecommendStatus { /// /// 未推荐 /// No = 10, /// /// 已推荐 /// Yes = 20 } }