pwd.go 236 B

12345678910111213
  1. package model
  2. // HistoryPwdCheckParam history pwd check param
  3. type HistoryPwdCheckParam struct {
  4. Mid int64 `form:"mid"`
  5. Pwd string `form:"pwd"`
  6. }
  7. // HistoryPwd history pwd
  8. type HistoryPwd struct {
  9. OldPwd string
  10. OldSalt string
  11. }