Files
EdgeCommon/pkg/rpc/protos/models/model_user_bill.proto
2022-01-23 19:16:58 +08:00

20 lines
325 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_user.proto";
message UserBill {
int64 id = 1;
User user = 2;
string type = 3;
string typeName = 4;
string description = 5;
float amount = 6;
string month = 7;
bool isPaid = 8;
int64 paidAt = 9;
string code = 10;
bool canPay = 11;
}