32 lines
782 B
32 lines
782 B
namespace Warehouse.Models.mesModel
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class seq_ctrl_material_lot
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(10)]
|
|
public string area_code { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(5)]
|
|
public string line_id { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(5)]
|
|
public string work_cell_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string last_date { get; set; }
|
|
|
|
public short seq_nbr { get; set; }
|
|
}
|
|
}
|
|
|