EasyMES/WaterCloud.Domain/Entity/ClassTask/ControlJobUserBandingEntity.cs
2022-10-20 17:12:54 +08:00

36 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.ComponentModel.DataAnnotations;
using Chloe.Annotations;
namespace WaterCloud.Domain.ClassTask
{
/// <summary>
/// 创 建:超级管理员
/// 日 期2021-06-03 13:55
/// 描 述:信息设置实体类
/// </summary>
[TableAttribute("mes_ControlJobUserBanding")]
public class ControlJobUserBandingEntity : IEntity<ControlJobUserBandingEntity>
{
/// <summary>
/// id
/// </summary>
[Column("F_Id", IsPrimaryKey = true)]
public string F_Id { get; set; }
/// <summary>
/// 0补货1入库2出库3产出上架4移库5作业开始6作业结束,7领用退回
/// </summary>
public int? F_JobType { get; set; }
/// <summary>
/// 用户ID
/// </summary>
public string F_UserId { get; set; }
/// <summary>
/// 设备ID
/// </summary>
public string F_EqpId { get; set; }
public string F_EqpName { get; set; }
public string F_UserName { get; set; }
}
}