using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.ReportPrinters
{
public class UpdateReportPrinterDto
{
///
/// 报表ID
///
public string ReportId { get; set; }
///
/// 计算机名称
///
public string ComputerName { get; set; }
///
/// 打印机名称
///
public string PrinterName { get; set; }
}
}