namespace IMCS_CCS.Model.vo { public class RequestKeDeData { // 服务ip地址 public string serverUrl { get; set; } // 调用类型 1:数据采集  2:上传程序并设置为主程序 4:删除程序 public string type { get; set; } // NC程序源位置,完整地址 public string localFilePath { get; set; } // NC程序目标位置,需拼接上文件名 public string remoteFilePath { get; set; } // 用户名 public string userName { get; set; } // 密码 public string password { get; set; } // 端口 public string port { get; set; } } }