Toggle navigation
Toggle navigation
This project
Loading...
Sign in
윤준석
/
mamuri-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
윤준석
2022-05-10 23:56:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fc548d37a07436695e6bf05ab5bb19665ed95c50
fc548d37
1 parent
7b7cb3f8
ADD: Item model based on db ER-Diagram
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
joongna/model/model.go
joongna/model/model.go
0 → 100644
View file @
fc548d3
1
+
package
model
2
+
3
+
type
Item
struct
{
4
+
Platform
string
`json:"platform"`
5
+
Name
string
`json:"name"`
6
+
Price
uint
`json:"price"`
7
+
Url
string
`json:"url"`
8
+
ExtraInfo
string
`json:"extraInfo"`
9
+
}
Please
register
or
login
to post a comment