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.
62 lines
1.5 KiB
62 lines
1.5 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.rt_module_audithistory")]
|
|
public partial class rt_module_audithistory
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(55)]
|
|
public string Module_ID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(20)]
|
|
public string ReasonCodeID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(20)]
|
|
public string StepID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(20)]
|
|
public string Classification { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4)]
|
|
[StringLength(20)]
|
|
public string Description { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string UserComment { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string Module_Grade { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string Status { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 5)]
|
|
[StringLength(45)]
|
|
public string Create_Date { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 6)]
|
|
[StringLength(20)]
|
|
public string OP_ID { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ModifyTimes { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string StepName { get; set; }
|
|
}
|
|
}
|
|
|