namespace DOAN.Model.MES.material
{
///
/// 北泽线边库库位
///
[SugarTable("material_parts_storage_locations")]
public class MaterialPartsStorageLocations
{
///
/// 库位ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "location_id")]
public int LocationId { get; set; }
///
/// 库位编码
///
[SugarColumn(ColumnName = "location_code")]
public string LocationCode { get; set; }
///
/// 库位描述
///
public string Description { get; set; }
///
/// 所属仓库ID
///
[SugarColumn(ColumnName = "warehouse_id")]
public int WarehouseId { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "created_at")]
public DateTime? CreatedAt { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "updated_at")]
public DateTime? UpdatedAt { get; set; }
}
}