A_A00007.java 528 B

12345678910111213141516171819202122232425
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 验证授权码
  9. */
  10. public class A_A00007 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String authCode;//授权验证码
  13. /**
  14. *授权验证码
  15. */
  16. public void setAuthCode(String authCode) {
  17. this.authCode=authCode;
  18. }
  19. /**
  20. *授权验证码
  21. */
  22. public String getAuthCode() {
  23. return this.authCode;
  24. }
  25. }