Files
huangguo_server/models/v/txnactmod/web.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

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"` //账户类型
}