using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.ERP
{
    /// 
    /// 调用ERP接口返回参数
    /// 
    public class ErpRequestContent
    {
        /// 
        /// 解释
        /// 
        public string Data { get ; set; }
        /// 
        /// 
        /// 
        public string Rdata { get; set; }
        /// 
        /// 响应状态
        /// 
        public int res { get ; set; }
    }
}