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.
23 lines
522 B
C#
23 lines
522 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///台车零件收容数管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CarrierPartManage
|
|
{
|
|
|
|
[Column("rack_part")]
|
|
[DisplayName("料架零件")]
|
|
public string RackPart { get; set; }
|
|
|
|
[Column("part_package")]
|
|
[DisplayName("零件满包")]
|
|
public string PartPackage { get; set; }
|
|
}
|
|
}
|