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.
21 lines
565 B
21 lines
565 B
4 years 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_VENDER_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; }
|
||
|
}
|
||
|
}
|