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.
21 lines
551 B
21 lines
551 B
namespace Warehouse.Models.mesLevel4
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class Service_PrintLog
|
|
{
|
|
[Key]
|
|
[StringLength(30)]
|
|
public string LotNumber { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string Message { get; set; }
|
|
|
|
[Column(TypeName = "smalldatetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
}
|
|
}
|
|
|