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.
20 lines
587 B
20 lines
587 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity.ExcelExportEnttity
|
|
{
|
|
public class SCP_PART_EXPORT
|
|
{
|
|
public string 零件编号 { get; set; }
|
|
public string 零件名称 { get; set; }
|
|
public string 项目编号 { get; set; }
|
|
public string 单位 { get; set; }
|
|
public string 状态 { get; set; }
|
|
public string 域 { get; set; }
|
|
public string 备注 { get; set; }
|
|
public string 零件类型 { get; set; }
|
|
}
|
|
}
|
|
|