|
|
|
package domain
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type PerformanceApplicationForm struct {
|
|
|
|
DimensionName string //维度名称
|
|
...
|
...
|
@@ -34,7 +37,7 @@ func LoadPerformanceDimensions(rows [][]string) ([]*PerformanceDimension, error) |
|
|
|
continue
|
|
|
|
}
|
|
|
|
if len(item) >= 1 {
|
|
|
|
if item[0] == "部门长审核" {
|
|
|
|
if item[0] == "部门长审核" || strings.Contains(item[0], "审核") {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
...
|
...
|
|