22 lines
631 B
Protocol Buffer
22 lines
631 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package model.v1;
|
|
|
|
option go_package = "pastebin/gen;genv1";
|
|
|
|
|
|
// @table_name: pastebin
|
|
message ModelPastebin {
|
|
int64 id = 1; // ID
|
|
int64 created_at = 2; // 创建时间
|
|
int64 expired_at = 3; // 过期时间
|
|
string short_id = 4; // ID别名
|
|
string title = 5; // 标题
|
|
string author = 6; // 作者
|
|
string content = 7; // 内容
|
|
string lang = 8; // 语言
|
|
string password = 9; // 是否需要密码
|
|
bool need_password = 10; // 是否需要密码
|
|
bool editable = 11; // 是否可以修改
|
|
}
|