ZHJA_HJGL/HJGL_ZH/FineUIPro.Web/RLSB/FaceConfirm.aspx.cs

24 lines
778 B
C#
Raw Permalink Normal View History

2024-05-08 17:17:11 +08:00
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-保管员结束确认
}
}
}