3
2
huahaiyan 6 vuotta sitten
vanhempi
commit
f5d477ab8a

+ 3 - 3
src/dashoo.cn/backend/api/controllers/lims/limscheckequipmentlist.go

@@ -47,7 +47,7 @@ func (this *LimsCheckEquipmentListController) GetEntityList() {
 	Spec := this.GetString("Spec")
 	SpecId := this.GetString("SpecId")
 	Manufacturer := this.GetString("Manufacturer")
-	Status := this.GetString("Status")
+	status := this.GetString("Status")
 
 	if Id != "" {
 		where = where + " and Id like '%" + Id + "%'"
@@ -93,8 +93,8 @@ func (this *LimsCheckEquipmentListController) GetEntityList() {
 		where = where + " and Manufacturer like '%" + Manufacturer + "%'"
 	}
 
-	if Status != "" {
-		where = where + " and Status like '%" + Status + "%'"
+	if status != "" {
+		where = where + " and Status like '%" + status + "%'"
 	}
 
 	/** if CreateOn != "" {