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

27 lines
806 B
C#
Raw 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_ControlJobMustTime")]
public class ControlJobMustTimeEntity : IEntity<ControlJobMustTimeEntity>
{
/// <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; }
public int? F_NeedTime { get; set; }
}
}