This commit is contained in:
2024-05-08 17:17:11 +08:00
parent 0696f555b2
commit 2f1fca4df2
4528 changed files with 635638 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using RLSB;
namespace FineUIPro.Web.RLSB
{
public partial class FaceConfirm : System.Web.UI.Page
{
protected string flag = "";//标志(1-焊工,2-保管员)
protected string keyId = "";//接收用户ID
protected string grid = "";//1-领料,2-退料,3-退回焊条头
protected void Page_Load(object sender, EventArgs e)
{
keyId = Request.Params["keyId"];
flag = Request.Params["flag"];//1-焊工,2-保管员
grid = Request.Params["grid"];//1-领料,2-退料,3-退焊条头,4-保管员结束确认
}
}
}