24 lines
778 B
C#
24 lines
778 B
C#
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-保管员结束确认
|
||
}
|
||
}
|
||
} |