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.
28 lines
742 B
28 lines
742 B
namespace Warehouse.Models.mesMysqlModel
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("js_mes.config_appearance_el_grade")]
|
|
public partial class config_appearance_el_grade
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(10)]
|
|
public string Appearance_Grade { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(10)]
|
|
public string El_Grade { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string Final_Grade { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|
|
|