using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 资源请求方式 /// public enum EnumResourceMethod { /// /// 无 /// None = 0, /// /// 查询 /// Get = 10, /// /// 提交 /// Post = 20, /// /// 修改 /// Put = 30, /// /// 删除 /// Delete = 40 } }