一厂MES,含注塑,喷涂,冲孔
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.

39 lines
899 B

1 week ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebService.Model
{
public class InfoModel
{
/// <summary>
/// 代码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 型号
/// </summary>
public string Type { get; set; }
/// <summary>
/// 车型
/// </summary>
public string CarType { get; set; }
/// <summary>
/// 颜色
/// </summary>
public string Color { get; set; }
/// <summary>
/// 批次
/// </summary>
public string Batch { get; set; }
/// <summary>
/// 库存
/// </summary>
public string Stock { get; set; }
}
}