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.
33 lines
656 B
C#
33 lines
656 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Xml.Linq;
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
{
|
|
/// <summary>
|
|
/// 从MES同步过来的型号实体
|
|
/// </summary>
|
|
|
|
public class ProductModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 型号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_CODE")]
|
|
public string MaterialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 成品名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_NAME")]
|
|
public string MaterialName { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|