1
hwh
2024-08-23 3d1df57ccc06c0c84813fac71f19ee5a4187b3da
Admin.NET/WCS.Application/Service/WcsStation/Dto/WcsStationOutput.cs
@@ -10,42 +10,85 @@
    /// 主键Id
    /// </summary>
    public long Id { get; set; }
    /// <summary>
    /// 设备ID
    /// </summary>
    public long DeviceId { get; set; }
    public long DeviceId { get; set; }
    /// <summary>
    /// 设备ID 描述
    /// </summary>
    public string? DeviceIdText { get; set; }
    public string? DeviceIdText { get; set; }
    /// <summary>
    /// 工位号
    /// </summary>
    public string? StationNum { get; set; }
    /// <summary>
    /// 偏移量
    /// </summary>
    public string? PlcPos { get; set; }
    /// <summary>
    /// 流程字类型
    /// </summary>
    public PLCDataTypeEnum? PosType { get; set; }
    /// <summary>
    /// 显示屏ip地址
    /// </summary>
    public string? LedIP { get; set; }
    /// <summary>
    /// 描述
    /// </summary>
    public string? Text { get; set; }
    }
    /// <summary>
    /// 创建时间
    /// </summary>
    public DateTime? CreateTime { get; set; }
    /// <summary>
    /// 更新时间
    /// </summary>
    public DateTime? UpdateTime { get; set; }
    /// <summary>
    /// 创建者Id
    /// </summary>
    public long? CreateUserId { get; set; }
    /// <summary>
    /// 创建者姓名
    /// </summary>
    public string? CreateUserName { get; set; }
    /// <summary>
    /// 修改者Id
    /// </summary>
    public long? UpdateUserId { get; set; }
    /// <summary>
    /// 修改者姓名
    /// </summary>
    public string? UpdateUserName { get; set; }
    /// <summary>
    /// 创建者部门Id
    /// </summary>
    public long? CreateOrgId { get; set; }
    /// <summary>
    /// 创建者部门名称
    /// </summary>
    public string? CreateOrgName { get; set; }
    /// <summary>
    /// 软删除
    /// </summary>
    public bool IsDelete { get; set; }
}