generated from GSM-MSG/MSG-Repository-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #367 from School-of-Company/366-schooldomain-setting
🔀 :: [#366] SchoolDomain 세팅
- Loading branch information
Showing
35 changed files
with
414 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
App/Sources/Feature/ClubListFeature/Source/Model/ClubListModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import Foundation | ||
|
||
public struct ClubListModel: Equatable { | ||
let clubID: Int | ||
let clubName: String | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Foundation | ||
|
||
public enum FieldType: String, Codable { | ||
case futuristicTransportationEquipment = "FUTURISTIC_TRANSPORTATION_EQUIPMENT" | ||
case energy = "ENERGY" | ||
case medicalHealthcare = "MEDICAL_HEALTHCARE" | ||
case aiConvergence = "AI_CONVERGENCE" | ||
case culture = "CULTURE" | ||
} | ||
|
||
public extension FieldType { | ||
func display() -> String { | ||
switch self { | ||
case .futuristicTransportationEquipment: return "미래형 운송기기" | ||
case .energy: return "에너지 산업" | ||
case .medicalHealthcare: return "의료 헬스케어" | ||
case .aiConvergence: return "AI 융복합" | ||
case .culture: return "문화산업" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import Foundation | ||
|
||
public enum LineType: String, Codable { | ||
case industry = "INDUSTRY" | ||
case commerce = "COMMERCE" | ||
case agriculturalLifeHealthCare = "AGRICULTURAL_LIFE_HEALTH_CARE" | ||
case customizedIndustrialDemand = "CUSTOMIZED_INDUSTRIAL_DEMAND" | ||
} | ||
|
||
public extension LineType { | ||
func display() -> String { | ||
switch self { | ||
case .industry: return "공업계열" | ||
case .commerce: return "상업계열" | ||
case .agriculturalLifeHealthCare: return "농업생명/보건의료계열" | ||
case .customizedIndustrialDemand: return "산업수요 맞춤형계열" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.