23 lines
621 B
C#
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; }
|
|
}
|
|
}
|