using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.Model { /// /// 返回结果对象 /// public class ResultEntity { public bool result { get; set; } public string msg { get; set; } } }