[账单]显示账单、手动生成账单

This commit is contained in:
GoEdgeLab
2020-12-11 21:39:17 +08:00
parent d446abf000
commit 520f537ed7
9 changed files with 1349 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "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;
}