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.
39 lines
1018 B
39 lines
1018 B
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_pallet_holdrelease_info")]
|
|
public partial class rt_pallet_holdrelease_info
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string BatchNo { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string PalletNo { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string State { get; set; }
|
|
|
|
[StringLength(145)]
|
|
public string HoldReason { get; set; }
|
|
|
|
public DateTime? HoldTime { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string HoldUserID { get; set; }
|
|
|
|
[StringLength(145)]
|
|
public string ReleaseReason { get; set; }
|
|
|
|
public DateTime? ReleaseTime { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ReleaseUserID { get; set; }
|
|
}
|
|
}
|
|
|