- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Extensometer.Model.ResultModel
- {
- public class ResultModel
- {
- public string ErrCode { get; set; } //异常编号
- public string ErrMessage { get; set; } //异常信息
- }
- }
|