ProductFeedbackInterface.cs
750 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model.Entities
{
/// <summary>
/// 成品反馈产量接口,对应原始中间表接口字段
/// </summary>
public class ProductFeedbackInterface
{
[Key]
public int? Id { get; set; }
public string AUFNR { get; set; }
public DateTime CHARG { get; set; }
public string MATNR { get; set; }
public string CHARG2 { get; set; }
public int PSMNG { get; set; }
public string LGORT { get; set; }
public string BWART { get; set; }
public DateTime BUDAT { get; set; }
}
}