All checks were successful
build-and-push / build (push) Successful in 39s
- config/db/storage/auth/router/perms: eQMS 규약 미러링, 권한 2-tier (관리자 전체 / 구성원 본인·신청만), oauth2-proxy 헤더 인증 + DEV_AUTH mock - 모델: 구성원/부서, 근무(출퇴근·휴가·공가·초과), 프로젝트(회사/제품/버전· 작업자portion·담당자·태스크·계약·첨부·분할입금), 인센티브(설정·단계· 유저배분·분기정산), 회계(거래·세금) - internal/worktime: 근로기준법 월 집계 엔진 - internal/incentive: BE/non-BE × 계약금/중도금/잔금 3단계 계산 + 시뮬레이션 - 시드 데이터, Go 멀티스테이지 Dockerfile - ADMIN_GROUPS 기본값 'admin' (전 내부 앱 공통 그룹) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
40 lines
1.2 KiB
Go
40 lines
1.2 KiB
Go
// Package models defines the GORM models for spin. Each domain slice adds its
|
|
// own file (member.go, attendance.go, project.go, incentive.go, accounting.go);
|
|
// this file holds the shared Base type and the AutoMigrate registry.
|
|
package models
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// Base provides a string UUID primary key populated in a BeforeCreate hook.
|
|
type Base struct {
|
|
ID string `gorm:"primaryKey" json:"id"`
|
|
}
|
|
|
|
func (b *Base) ensureID() {
|
|
if b.ID == "" {
|
|
b.ID = uuid.NewString()
|
|
}
|
|
}
|
|
|
|
// All returns every model for AutoMigrate. Each slice appends its models here.
|
|
func All() []interface{} {
|
|
return []interface{}{
|
|
// slice 1 — members / org
|
|
&Member{}, &Department{}, &AuditLog{},
|
|
// slice 2 — attendance / leave
|
|
&Attendance{}, &LeaveRequest{}, &OvertimeRequest{}, &WorkPolicy{}, &LeaveBalance{},
|
|
// slice 3 — projects
|
|
&Company{}, &Product{}, &Version{}, &Project{}, &ProjectMember{},
|
|
&ClientContact{}, &ProjectTask{}, &Contract{}, &ContractFile{}, &PaymentSplit{},
|
|
// slice 4 — incentive
|
|
&IncentiveConfig{}, &PaymentStage{}, &UserIncentive{}, &QuarterlySettlement{},
|
|
// slice 5 — accounting
|
|
&Account{}, &Transaction{}, &TaxRecord{},
|
|
}
|
|
}
|
|
|
|
var _ = gorm.ErrRecordNotFound // keep gorm imported for slice files
|