InitBasfTcc11

This commit is contained in:
2024-05-08 16:27:28 +08:00
commit f1000143a0
3754 changed files with 382456 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.WeldingProcess.CheckManage
{
public partial class SeeFilm : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
string repairRecordId = Request.Params["repairRecordId"];
var repairRecord = BLL.RepairRecordService.GetRepairRecordById(repairRecordId);
if (!string.IsNullOrEmpty(repairRecord.PhotoUrl))
{
imgPhoto.ImageUrl = repairRecord.PhotoUrl;
}
}
}
}