25 lines
626 B
25 lines
626 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 config_marklabels
|
|
{
|
|
[Key]
|
|
[StringLength(30)]
|
|
public string marklabel_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(30)]
|
|
public string marklabel_desc { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string station_type { get; set; }
|
|
|
|
public byte active_flag { get; set; }
|
|
}
|
|
}
|
|
|