using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Domain
{
///
/// 物料对应表
///
[Comment("物料对应表")]
public class DMS_IN_ITEMMAPPING
{
///
/// 产品线编码
///
[Comment("产品线编码")]
public string? DivisionCode { get; set; }
///
/// 产品线名称
///
[Comment("产品线名称")]
public string? DivisionName { get; set; }
///
/// 产品型号
///
[Comment("产品型号")]
public string? CfnCode { get; set; }
///
/// 产品名称
///
[Comment("产品名称")]
public string? CfnName { get; set; }
///
/// SAP物料编码
///
[Comment("SAP物料编码")]
public string? CfnERPCode { get; set; }
}
}