using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Tiger.Model.Sharetronic.Shelf
{
///
/// 所有灯全灭
///
public class DownAllEntity
{
///
/// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧
///
public string shelfNo { get; set; }
///
/// 货架类型,sensor_shelf 感应式货架,led_shelf LED 灯架
///
public string shelfType { get; set; }
}
}