ProductFeedback.cs 745 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.Entities
{
    /// <summary>
    /// 成品反馈接口,对应本地表
    /// </summary>
    public class ProductFeedback : BaseModel
    {
        public string OrderCode { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialBatch { get; set; }
        public DateTime ProductDate { get; set; }
        public int Qty { get; set; }
        public string Location { get; set; }
        public string Type { get; set; }
        public DateTime? PostDate { get; set; }

        public int CommitType { get; set; }
        public int Commit { get; set; }


    }
}