根据agencyId查询
@ -8,5 +8,6 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
@AllArgsConstructor
public class PowerAxisStructFormDTO{
private String agencyId;
private String name;
}
@ -77,6 +77,9 @@
1 = 1
<if test="name != null and name != ''">
and NAME = #{name}
</if>
<if test="agencyId != null and agencyId != ''">
and AGENCY_ID = #{agencyId}
and del_flag = 0
</where>