旧版报表、仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

56 lines
1.4 KiB

namespace Warehouse.Models.mesMysqlModel
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("js_mes.df_qtime_config")]
public partial class df_qtime_config
{
public int ID { get; set; }
[StringLength(45)]
public string QtimeName { get; set; }
[StringLength(45)]
public string FlowID { get; set; }
[StringLength(45)]
public string WorkShop { get; set; }
[StringLength(45)]
public string WorkOrder { get; set; }
[Required]
[StringLength(45)]
public string FromStep { get; set; }
[Required]
[StringLength(45)]
public string ToStep { get; set; }
[Required]
[StringLength(45)]
public string JudgeFlg { get; set; }
public int LimitTime { get; set; }
[StringLength(1)]
public string Status { get; set; }
[StringLength(45)]
public string CreateUserID { get; set; }
public DateTime? CreateTime { get; set; }
[StringLength(45)]
public string LastUpdateUserID { get; set; }
public DateTime? LastUpdateTime { get; set; }
[StringLength(145)]
public string Remark { get; set; }
}
}