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.
18 lines
375 B
C#
18 lines
375 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///台车管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CarrierManage
|
|
{
|
|
[Column("rack_no")]
|
|
[DisplayName("台车号")]
|
|
public string RackNo { get; set; }
|
|
}
|
|
}
|