1.增加电梯的路径判断与平均分配

2.载具查询异常抛出
3.在线开发的子表使用弹窗时,编辑显示时bug,例如"_point_code_"在dictionary中 不存在
This commit is contained in:
FanLian
2023-07-27 14:30:31 +08:00
parent 1a01ea378e
commit 5cbe089b10
8 changed files with 240 additions and 9 deletions

View File

@@ -0,0 +1,92 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// WMS电梯设定主表
/// </summary>
[SugarTable("wms_elevator_h")]
public partial class WmsElevatorH : BaseEntity<string>
{
public WmsElevatorH()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 所属组织
/// </summary>
public string? org_id { get; set; }
/// <summary>
/// 电梯ID
/// </summary>
public string elevator_id { get; set; } = string.Empty;
/// <summary>
/// 电梯编号
/// </summary>
public string elevator_code { get; set; } = string.Empty;
/// <summary>
/// 管理区ID
/// </summary>
public string area_id { get; set; } = string.Empty;
/// <summary>
/// 管理区编号
/// </summary>
public string area_code { get; set; } = string.Empty;
/// <summary>
/// 电梯组
/// </summary>
public string elevator_group { get; set; } = string.Empty;
/// <summary>
/// 状态
/// </summary>
public int status { get; set; }
/// <summary>
/// 任务数量
/// </summary>
public int task_nums { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? remark { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; } = string.Empty;
/// <summary>
/// 创建时间
/// </summary>
public DateTime create_time { get; set; } = DateTime.Now;
/// <summary>
/// 最后修改人员
/// </summary>
public string? modify_id { get; set; }
/// <summary>
/// 最后修改时间
/// </summary>
public DateTime? modify_time { get; set; }
/// <summary>
/// 扩展字段
/// </summary>
public string? extras { get; set; }
/// <summary>
/// 时间戳(用于并发控制)
/// </summary>
public DateTime? timestamp { get; set; }
}