24 lines
995 B
Go
24 lines
995 B
Go
package txnactmod
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
type Edit struct {
|
|
ID primitive.ObjectID `json:"id" bson:"_id,omitempty"`
|
|
ActName *string `json:"actName,omitempty" bson:"actName,omitempty"` //账户姓名
|
|
Act *string `json:"act,omitempty" bson:"act,omitempty"` //账户号
|
|
CardType *string `json:"cardType,omitempty" bson:"cardType,omitempty"` //卡类型
|
|
AType *ActType `json:"aType,omitempty" bson:"aType,omitempty"` //账户类型
|
|
UpdatedAt time.Time `json:"updatedAt" bson:"updatedAt"`
|
|
}
|
|
|
|
type Query struct {
|
|
ActName *string `json:"actName,omitempty" bson:"actName,omitempty"` //账户姓名
|
|
Act *string `json:"act,omitempty" bson:"act,omitempty"` //账户号
|
|
CardType *string `json:"cardType,omitempty" bson:"cardType,omitempty"` //卡类型
|
|
AType *ActType `json:"aType,omitempty" bson:"aType,omitempty"` //账户类型
|
|
}
|