using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.PBL
{
///
/// 库存日志
///
[SugarTable("light_log")]
public class Light_Log
{
///
/// 雪花
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
///
/// 1亮灯、2灭灯
///
[SugarColumn(ColumnName = "light_operation")]
public int LightOperation { get; set; }
///
/// 货架号
///
[SugarColumn(ColumnName = "shelf_code")]
public string ShelfCode { get; set; }
///
/// 操作者
///
[SugarColumn(ColumnName = "operationer")]
public string Operationer { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
}
}