using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class InsertResultDto { /// /// 状态信息 /// public int Code { get; set; } /// /// 提示信息 /// public string Message { get; set; } /// /// /// public bool Data { get; set; } } }