mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-09-18 01:25:54 +00:00
26 lines
700 B
Go
26 lines
700 B
Go
/*
|
|
* @Author: LinkLeong link@icewhale.org
|
|
* @Date: 2022-07-26 11:17:17
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-07-27 15:25:07
|
|
* @FilePath: /CasaOS/service/model/o_shares.go
|
|
* @Description:
|
|
* @Website: https://www.casaos.io
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
*/
|
|
package model
|
|
|
|
type SharesDBModel struct {
|
|
ID uint `gorm:"column:id;primary_key" json:"id"`
|
|
Anonymous bool `json:"anonymous"`
|
|
Valid_users []string {} `json:"valid_users"`
|
|
Path string `json:"path"`
|
|
Name string `json:"name"`
|
|
Updated int64 `gorm:"autoUpdateTime"`
|
|
Created int64 `gorm:"autoCreateTime"`
|
|
}
|
|
|
|
func (p *SharesDBModel) TableName() string {
|
|
return "o_shares"
|
|
}
|