using System; using System.Collections.Generic; using System.Text; namespace NXWMS.Service.ERP { public class ResponseModel<T> { public int ErrCode { get; set; } public string ErrMsg { get; set; } public T Data { get; set; } } }