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.
41 lines
1014 B
41 lines
1014 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_mat_bks
|
|
{
|
|
[Key]
|
|
[StringLength(20)]
|
|
public string part_nbr { get; set; }
|
|
|
|
public short bks_type_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string bks_type_desc { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string bks_thickness { get; set; }
|
|
|
|
public short bks_spec_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string bks_spec { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string bks_width { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string trade_type_desc { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string bks_color_desc { get; set; }
|
|
}
|
|
}
|
|
|