namespace ZJ_BYD.ViewModel
{
public class MaChineTypeStationVM
{
public int Id { get; set; }
///
/// 机壳码
///
public string MachineTypeCode { get; set; }
///
/// 工位编码
///
public string StationCode { get; set; }
///
/// 工位名称
///
public string StationName { get; set; }
///
/// 是否使用中
///
public string StrIsUsed { get; set; }
///
/// 分类
///
public string Category { get; set; }
}
}