📄 imagedealwith.cs
字号:
using System;
namespace Example_12_26
{
/// <summary>
/// ImageDealWith 的摘要说明。
/// </summary>
public class BoxUnitDTO
{
private string specimenId = "";
private bool isEmpty = true;
public BoxUnitDTO()
{
//
// TODO: Add constructor logic here
//
}
public string SpecimenId
{
get
{
return specimenId;
}
set
{
specimenId = value;
}
}
public bool IsEmpty
{
get
{
return isEmpty;
}
set
{
isEmpty = value;
}
}
}
public class BoxDTO
{
private string boxName = "";
private string boxUnitsX = "0";
private string boxUnitsY = "0";
private BoxUnitDTO[] boxUnits;
public BoxDTO()
{
//
// TODO: Add constructor logic here
//
}
public BoxUnitDTO[] BoxUnits
{
get
{
return boxUnits;
}
set
{
boxUnits = value;
}
}
public string BoxUnitsY
{
get
{
return boxUnitsY;
}
set
{
boxUnitsY = value;
}
}
public string BoxUnitsX
{
get
{
return boxUnitsX;
}
set
{
boxUnitsX = value;
}
}
public string BoxName
{
get
{
return boxName;
}
set
{
boxName = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -