Files
wcs/WCS.BLL/DbModels/STZL/LocationAreaInfo.cs
2025-01-13 14:10:32 +08:00

23 lines
621 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.BLL.DbModels
{
/// <summary>
/// 库位区域
/// </summary>
[SugarTable("wcs_location_area")]
public class LocationAreaInfo
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsNullable = false, IsIdentity = true)]
public int Id { get; set; }
[SugarColumn(ColumnName = "location_area", Length = 64, IsNullable = false, ColumnDescription = "库位区域")]
public string LocationAreaName { get; set; }
}
}