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.
33 lines
829 B
33 lines
829 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.barcode_rework")]
|
|
public partial class barcode_rework
|
|
{
|
|
[StringLength(40)]
|
|
public string pallet_no { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string OP { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string workshop { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string banci { get; set; }
|
|
|
|
[Key]
|
|
public DateTime Create_Date { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string template { get; set; }
|
|
|
|
[StringLength(40)]
|
|
public string module_id { get; set; }
|
|
}
|
|
}
|
|
|