zoukankan      html  css  js  c++  java
  • 6.3学习记录

    对账号密码进行防注入修改
    package com.james.motion.commmon.bean;

    import java.io.Serializable;

    import io.realm.RealmObject;
    import io.realm.annotations.PrimaryKey;
    import io.realm.annotations.Required;

    /**
    * 描述: 账号密码
    * 作者: james
    * 日期: 2019/2/25 19:59
    * 类名: UserAccount
    */
    public class UserAccount extends RealmObject implements Serializable {

    @PrimaryKey
    private Long id;

    //用户名
    @Required
    private String account;

    //密码
    @Required
    private String psd;

    public Long getId() {
    return id;
    }

    public void setId(Long id) {
    this.id = id;
    }

    public String getAccount() {
    return account;
    }

    public void setAccount(String account) {
    this.account = account;
    }

    public String getPsd() {
    return psd;
    }

    public void setPsd(String psd) {
    this.psd = psd;
    }
    }
  • 相关阅读:
    单位根反演学习笔记
    省选模拟测试17
    省选模拟测试16
    省选模拟测试15
    省选模拟测试14
    省选模拟测试13
    P4491 [HAOI2018]染色
    省选模拟测试12
    P4389 付公主的背包
    洛谷P3403
  • 原文地址:https://www.cnblogs.com/blog-wangke/p/14871880.html
Copyright © 2011-2022 走看看