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.
24 lines
757 B
24 lines
757 B
1 year ago
|
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_MAXPO_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; }
|
||
|
public string 供应商编号 { get; set; }
|
||
|
public string 材料厂家 { get; set; }
|
||
|
public string 备注 { get; set; }
|
||
|
}
|
||
|
}
|