This commit is contained in:
dev02 2023-05-29 10:08:50 +08:00
commit 7a6b2068bd
2 changed files with 6 additions and 6 deletions

View File

@ -61,10 +61,10 @@ namespace Backend.ApiControllers
{ {
{ "@user_guid", myUser.userinfo_guid }, { "@user_guid", myUser.userinfo_guid },
{ "@operation_type", 1 }, //1名稱修改 { "@operation_type", 1 }, //1名稱修改
{ "@building_guid", GetOne.building_tag }, { "@building_tag", GetOne.device_building_tag },
{ "@main_system_guid", GetOne.device_system_tag }, { "@main_system_tag", GetOne.device_system_tag },
{ "@sub_system_guid", GetOne.device_name_tag }, { "@sub_system_tag", GetOne.device_name_tag },
{ "@floor_guid", GetOne.floor_tag }, { "@floor_tag", GetOne.device_floor_tag },
{ "@device_guid", GetOne.Device_guid }, { "@device_guid", GetOne.Device_guid },
{ "@action_name", "修改名稱" }, { "@action_name", "修改名稱" },
{ "@parameter", JsonConvert.SerializeObject(change) }, { "@parameter", JsonConvert.SerializeObject(change) },

View File

@ -54,13 +54,13 @@ namespace Backend.Models
public string Device_guid { get; set; } public string Device_guid { get; set; }
public byte Deleted { get; set; } public byte Deleted { get; set; }
public byte Status { get; set; } public byte Status { get; set; }
public string building_tag { get; set; } public string device_building_tag { get; set; }
public string Building_full_name { get; set; } public string Building_full_name { get; set; }
public string Main_system_guid { get; set; } public string Main_system_guid { get; set; }
public string Main_system_full_name { get; set; } public string Main_system_full_name { get; set; }
public string Sub_system_guid { get; set; } public string Sub_system_guid { get; set; }
public string Sub_system_full_name { get; set; } public string Sub_system_full_name { get; set; }
public string floor_tag { get; set; } public string device_floor_tag { get; set; }
public string Floor_full_name { get; set; } public string Floor_full_name { get; set; }
public string Device_coordinate { get; set; } public string Device_coordinate { get; set; }
public string Device_full_name { get; set; } public string Device_full_name { get; set; }