12345678910111213141516171819202122232425 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 获取授权码
- */
- public class D_A00006 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String authCode;//授权验证码
- /**
- *授权验证码
- */
- public void setAuthCode(String authCode) {
- this.authCode=authCode;
- }
- /**
- *授权验证码
- */
- public String getAuthCode() {
- return this.authCode;
- }
- }
|