You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
647 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///料架明细信息
/// </summary>
[Serializable]
public class TrayDefineDetail
{
[Column("tray_name")]
[DisplayName("料架名称")]
public string TrayName { get; set; }
[Column("tray_loc1")]
[DisplayName("料架位置")]
public string TrayLoc1 { get; set; }
[Column("place_part_location1")]
[DisplayName("放置的总成类型")]
public string PlacePartLocation1 { get; set; }
}
}