20221119 1+X 中级实操考试(id:3609)

//补充完成该类的含参构造方法 public Info(String name, int age, String sex, String phone) { } 

/**
 * 员工基本信息类
 */
public class Info {
	private String name;//员工姓名
	private int age;//员工年龄
	private String sex;//员工性别
	private String phone;//员工电话

	//补充完成该类的含参构造方法
	public Info(String name, int age, String sex, String phone) {
		this.name = name;
        this.age = age;
        this.sex = sex;
        this.phone = phone;


	}

// 请修改该方法,以保证打印对象时输出格式如下: // {name:"zs";age:20;sex:"男";phone:"18812349876"} @Override public String toString() { return ""; }

// 请修改该方法,以保证打印对象时输出格式如下:
	// {name:"zs";age:20;sex:"男";phone:"18812349876"}
	@Override
	public String toString() {
	
		return "[name='"+this.name+"';age="+this.age+";sex='"+this.sex+"';phone='"+this.phone+"']";
	}

// 缺失代码:请补全以下方法,要求员工绩效分数的范围在:[0,100] 之间,包括0和100。 // 当参数在规定范围外时,不做任何动作 public void setScore(int score) { }

// 缺失代码:请补全以下方法,要求员工绩效分数的范围在:[0,100] 之间,包括0和100。
	// 当参数在规定范围外时,不做任何动作
	public void setScore(int score) {
		       if(score>=0 && score<=100){

            this.score = score;
	}
}

public void setScore(int score) {
        if(score>=0 && score<=100){
            this.score = score;
        }
    }

/** * 依据员工姓名查询员工信息 * @param name 员工姓名 * @return 有的话返回对象,没有的话返回null */ public Info queryByName(String name){ // 请补全sql语句 String sql = "###"; Info i = infoUtil.getOne(sql, Info.class, name); return i; }

  /**
	 * 依据员工姓名查询员工信息
	 * @param name 员工姓名
	 * @return 有的话返回对象,没有的话返回null
	 */
	public Info queryByName(String name){
                // 请补全sql语句
                String sql = "select * from info where name=?";
                Info i = infoUtil.getOne(sql, Info.class, name); 
                return i;
        }
package org.lanqiao.daoimpl;

import java.util.List;

import org.lanqiao.bean.Account;
import org.lanqiao.bean.Info;
import org.lanqiao.dao.SSDao;
import org.lanqiao.db.ObjectUtil;

/**
 * 接口实现类
 */
public class SSDaoImpl implements SSDao{
        /*
         * ObjectUtil工具类提供的方法能实现对数据库的CRUD操作
         * */
        ObjectUtil<Info> infoUtil = new ObjectUtil<Info>();
        ObjectUtil<Account> accountUtil = new ObjectUtil<Account>();

        /**
	 * 依据员工姓名查询员工信息
	 * @param name 员工姓名
	 * @return 有的话返回对象,没有的话返回null
	 */
	public Info queryByName(String name){
                // 请补全sql语句
                String sql = "select * from info where name=?";
                Info i = infoUtil.getOne(sql, Info.class, name); 
                return i;
        }

        /**
	 * 依据员工姓名和绩效日期查询绩效分
	 * @param name 员工姓名
	 * @param time 绩效日期
	 * @return 有的话返回绩效分,没有的话返回0
	 */
	public int queryScore(String name, String time){
                // 请补全sql语句
                String sql = "select * from account where name=? and time=?";
                Account i = accountUtil.getOne(sql, Account.class, name, time); 
                if(i==null){
                        return 0;
                }else{
                        return i.getScore();
                }
        }

        /**
	 * 查询绩效分最高的员工姓名
	 * @return 返回员工姓名
	 */
	public String queryMaxScore(){
                // 请补全sql语句
                String sql = "select * from account order by score desc limit 1";
                Account i = accountUtil.getOne(sql, Account.class); 
                return i.getName();
        }

	/**
	 * 查询平均绩效分最高的员工姓名
	 * @return 返回姓名
	 */
	public String queryMaxAvg() {
                // 请补全sql语句
                String sql = "select * from account where name=(select name from account group by name order by avg(score) desc limit 1)";
                Account i = accountUtil.getOne(sql, Account.class); 
                return i.getName();
        }

        /**
	 * 查询员工绩效分最高分与最低分差值最大的员工姓名
	 * @return 返回姓名
	 */
	public String queryMaxMin() {
                // 请补全sql语句
                String sql = "select * from account where name=(select name from account group by name order by max(score)-min(score) desc limit 1)";
                Account i = accountUtil.getOne(sql, Account.class); 
                return i.getName();
        }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱吃java的羊儿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值