You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1007 B
29 lines
1007 B
package com.dsideal.FengHuang.TouPiao.Model;
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.dsideal.FengHuang.Util.CommonUtil;
|
|
import com.dsideal.FengHuang.Util.IpUtil;
|
|
import com.dsideal.FengHuang.Util.MysqlAesUtil;
|
|
import com.dsideal.FengHuang.Util.PkUtil;
|
|
import com.jfinal.plugin.activerecord.Db;
|
|
import com.jfinal.plugin.activerecord.Page;
|
|
import com.jfinal.plugin.activerecord.Record;
|
|
import com.jfinal.plugin.activerecord.SqlPara;
|
|
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public class TouPiaoModel {
|
|
|
|
public List<Record> getHouXuanRenList(int type_id) {
|
|
String sql = "select * from t_toupiao_houxuanren where houxuanren_type_id=?";
|
|
return Db.find(sql, type_id);
|
|
}
|
|
|
|
public List<Record> getTouPiaoRenInfo(String toupiaoren_tel) {
|
|
String sql = "select * from t_toupiao_toupiaoren where toupiaoren_tel=?";
|
|
return Db.find(sql, toupiaoren_tel);
|
|
}
|
|
} |