using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
///
/// 机械臂主表
///
[SugarTable("wms_mechanicalarm_h")]
public partial class WmsMechanicalArmH : BaseEntity
{
public WmsMechanicalArmH()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 说明
///
public string? name { get; set; }
///
/// 码垛位
///
public int? stackingposition { get; set; }
///
/// 码垛计数
///
public int? stackingcount { get; set; }
///
/// 料架上的条码
///
public string? barcodes { get; set; }
///
/// 料架最大盛放数量
///
public int? maxracknum { get; set; }
///
/// 出库单
///
public string? outbill { get; set; }
///
/// 满托数量
///
public int? maxnum { get; set; }
///
/// 是否生成预任务
///
public int? iscreatepretask { get; set; }
///
/// 料架id
///
public string? rackid { get; set; }
///
/// 料架编号
///
public string? rackcode { get; set; }
///
/// 库位id
///
public string? location_id { get; set; }
///
/// 库位编号
///
public string? location_code { get; set; }
///
/// 取放货确认
///
public int? agvconfirm { get; set; }
///
/// 取放货确认
///
public int? mechanicalconfirm { get; set; }
///
/// 备注
///
public string? note { get; set; }
}