//건축법 시행령 8조 (건축허가) 3항 2호
Check(EDBA_8_3_2){
KS
}
KS{
getBuildingUsage() = "ClassIINeighborhoodLivingFacility.Restaurant"
}
|
def Check():
typ = SELECT('typology').STRING().lower()
if typ == "ClassIINeighborhoodLivingFacility.Restaurant":
building.SUCCESS("Building Usage is Restaurant of ClassIINeighborhoodLivingFacility")
else:
building.ERROR("Building Usage is not Restaurant of ClassIINeighborhoodLivingFacility")
|