using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 合同制版状态 /// public enum EnumContractTemplateStatus { /// /// 待制版 /// Wait = 10, /// /// 已完成 /// Completed = 20 } }