...
|
...
|
@@ -23,8 +23,9 @@ func NewSummaryEvaluationDao(options map[string]interface{}) *SummaryEvaluationD |
|
|
}
|
|
|
|
|
|
type ExecutorCycle struct {
|
|
|
CycleId string `pg:"cycle_id" ` //周期id
|
|
|
CycleName string `pg:"cycle_name"` //周期名称
|
|
|
CycleId string `pg:"cycle_id" ` //周期id
|
|
|
CycleName string `pg:"cycle_name"` //周期名称
|
|
|
CreatedAt time.Time `pg:"created_at"`
|
|
|
}
|
|
|
|
|
|
// GetExecutorCycleList 获取执行人拥有的周期列表
|
...
|
...
|
|