2025-05-22 13:06:49 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WcsMain.DataBase.TableEntity;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 库前输送机表
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("tbl_app_stacker_convey")]
|
|
|
|
|
|
public class AppStackerConvey
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// WCS 点位
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, ColumnName = "wcs_location")]
|
|
|
|
|
|
[JsonPropertyName("wcsLocation")]
|
|
|
|
|
|
public string? WcsLocation { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// WMS 点位
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "wms_location")]
|
|
|
|
|
|
[JsonPropertyName("wmsLocation")]
|
|
|
|
|
|
public string? WmsLocation { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 点位名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "location_name")]
|
|
|
|
|
|
[JsonPropertyName("locationName")]
|
|
|
|
|
|
public string? LocationName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// plc 的位置
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "plc_location")]
|
|
|
|
|
|
[JsonPropertyName("plcLocation")]
|
|
|
|
|
|
public string? PlcLocation { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 区域
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "area")]
|
|
|
|
|
|
[JsonPropertyName("area")]
|
|
|
|
|
|
public string? Area { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 点位类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "location_type")]
|
|
|
|
|
|
[JsonPropertyName("locationType")]
|
|
|
|
|
|
public int? LocationType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 点位状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "location_status")]
|
|
|
|
|
|
[JsonPropertyName("locationStatus")]
|
|
|
|
|
|
public int? LocationStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 写入方式
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "write_type")]
|
|
|
|
|
|
[JsonPropertyName("writeType")]
|
|
|
|
|
|
public int? WriteType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备注信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "remark")]
|
|
|
|
|
|
[JsonPropertyName("remark")]
|
|
|
|
|
|
public string? Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|