using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using iMES.Entity;
using Newtonsoft.Json.Linq;
namespace iMES.Entity.DomainModels
{
public class PrintOutput
{
///
///数据
///
public JObject data { get; set; }
///
///消息
///
public string message { get; set; }
///
///状态
///
public int status { get; set; }
public bool success { get; set; }
}
}