33 lines
792 B
33 lines
792 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public partial class TB_PALLETS_RULL
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
|
public int UID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string RuleBatch { get; set; }
|
|
|
|
public int LastNumber { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(500)]
|
|
public string LastBarCode { get; set; }
|
|
|
|
public DateTime LastTime { get; set; }
|
|
|
|
public int State { get; set; }
|
|
}
|
|
}
|
|
|