using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetPriProjectQueryVo { /// /// ID /// public int id { get; set; } /// /// 项目名称 /// public string projectName { get; set; } /// /// 调用方式 /// public string requestMode { get; set; } /// /// 是否通知 /// public bool noticeFlag { get; set; } /// /// 通知地址 /// public string noticeUrl { get; set; } /// /// 请求地址 /// public string requestUrl { get; set; } /// /// 返回数据类型 /// public string returnType { get; set; } } }