WithdrawRecordsCondition.go 308 B

12345678
  1. package common_model
  2. type WithdrawRecordsCondition struct {
  3. TalentId string `condition:"talent_id"` // 达人ID
  4. Status int32 `condition:"status"` //提现状态
  5. SubmitAt string `condition:"submit_at"` // 申请提交时间
  6. WithdrawAt string `condition:"withdraw_at"` // 提现时间
  7. }