提交代码

This commit is contained in:
hehaibing-1996
2024-06-29 17:30:54 +08:00
parent 5ea25c477c
commit 344158c722
43 changed files with 1148 additions and 98 deletions

View File

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace WCS.Model.ApiModel.MatBaseInfo
{
public class JinChuanGenerateMatInfoRequest : RequestBase
{
/// <summary>
/// 查询是否有这个 没得的话新建一个再返回
/// </summary>
public string MatCode { get; set; }
}
public class JinChuanCommitMatInfoRequest : RequestBase
{
public int MatId { get; set; }
public int CurrentSerilNumber { get; set; }
public int TotalPan { get; set; }
public string MatBatch { get; set; }
public int MatQty { get; set; }
public List<string> CurrentMatSn { get; set; }
}
}

View File

@ -55,6 +55,8 @@ namespace WCS.BLL.DbModels
public int RowNumber { get; set; }
public int SerialNumber { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{