⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 .#order.java.1.2

📁 为交课程设计
💻 2
字号:
package com.infodeliver.hr.order.model;

public class Order {


  private int order_id = 00002;                                         //订单号
  private String customer_name = "sony";                                //客户名称
  private String belongto = "whzhang";                             //跟单人
  private String start_time = "20040505";                       	//开始时间
  private String finish_time = "20050909";                      	//结束时间
  private String has_done = "10";                               	//已完成
  private String will_do = "20";      				  	//未完成
  private String department_name = "dev";                    		//部门名称
  private String responsibility_by = "RenJie Liu";                  //担当人
  private String responsibility_by_address = "WuXi";            	//担当人住所
  private String responsibility_by_phone = "13303912113";       	//担当人电话
  private String belongto_department = "tech";                	//所属部门
  private String job_type = "SoftDev";                              //岗位名称
  private int age_from = 20;                                      //起始年龄
  private int age_to = 40;                                        //结束年龄
  private String workplace = "WuXi";                                //工作地点
  private String start_work_time = "No Require";                  //开始上班日期
  private String number = "30";                                     //需要人数
  private String job_position = "SoftDevlopment";                   //工作岗位
  private String sex = "male";                                      //性别
  private String nationality = "China";                             //国籍
  private String registered_residence = "HeNan";                    //户籍
  private String degree = "college";                                //学历
  private String major = "computer";                                //专业
  private String language_japanese_level = "3";                     //日语水平
  private String language_englihs_level ="3";                       //英语水平
  private String detail_work_todo = "software devlopment";          //详细负责工作内容
  private String request_skill_work_expericence = "oop:java,c++.DB:mysql,oracle";                //必要的技能及工作经验
  private String request_competency = "realtive";                            			//必要资格
  private String other_competency = "card of Bank";                              			//其他资格
  private String salary_method = "card of Bank";                      //薪水支付方式
  private String probationership_month = "3";                         //试用期
  private String bonus ="NO";                                         //奖金
  private String customer_id = "100";                                 //关联o_customer用户编号
  private String orderstatus_id = "100";                              //关联o_orderstatus订单状态编号
  private String other_things ="No";                                  //其他事情

    public void setOrder_id(int order_id) {
      this.order_id = order_id;
    }

    public void setCustomer_name(String customer_name) {
      this.customer_name = customer_name;
    }

    public void setBelongto(String belongto) {
      this.belongto = belongto;
    }

    public void setStart_time(String start_time) {
      this.start_time = start_time;
    }

    public void setFinish_time(String finish_time) {
      this.finish_time = finish_time;
    }

    public void setHas_done(String has_done) {
      this.has_done = has_done;
    }

    public void setWill_do(String will_do) {
      this.will_do = will_do;
    }

    public void setDepartment_name(String department_name) {
      this.department_name = department_name;
    }

    public void setResponsibility_by(String responsibility_by) {
      this.responsibility_by = responsibility_by;
    }

    public void setResponsibility_by_address(String responsibility_by_address) {
      this.responsibility_by_address = responsibility_by_address;
    }

    public void setResponsibility_by_phone(String responsibility_by_phone) {
      this.responsibility_by_phone = responsibility_by_phone;
    }

    public void setBelongto_department(String belongto_department) {
      this.belongto_department = belongto_department;
    }

    public void setJob_type(String job_type) {
      this.job_type = job_type;
    }

    public void setAge_from(int age_from) {
      this.age_from = age_from;
    }

    public void setAge_to(int age_to) {
      this.age_to = age_to;
    }

    public void setWorkplace(String workplace) {
      this.workplace = workplace;
    }

    public void setStart_work_time(String start_work_time) {
      this.start_work_time = start_work_time;
    }

    public void setNumber(String number) {
      this.number = number;
    }

    public void setJob_position(String job_position) {
      this.job_position = job_position;
    }

    public void setSex(String sex) {
      this.sex = sex;
    }

    public void setNationality(String nationality) {
      this.nationality = nationality;
    }

    public void setRegistered_residence(String registered_residence) {
      this.registered_residence = registered_residence;
    }

    public void setDegree(String degree) {
      this.degree = degree;
    }

    public void setMajor(String major) {
      this.major = major;
    }

    public void setLanguage_japanese_level(String language_japanese_level) {
      this.language_japanese_level = language_japanese_level;
    }

    public void setLanguage_englihs_level(String language_englihs_level) {
      this.language_englihs_level = language_englihs_level;
    }

    public void setDetail_work_todo(String detail_work_todo) {
      this.detail_work_todo = detail_work_todo;
    }

    public void setRequest_skill_work_expericence(String
                                                  request_skill_work_expericence) {
      this.request_skill_work_expericence = request_skill_work_expericence;
    }

    public void setRequest_competency(String request_competency) {
      this.request_competency = request_competency;
    }

    public void setOther_competency(String other_competency) {
      this.other_competency = other_competency;
    }

    public void setSalary_method(String salary_method) {
      this.salary_method = salary_method;
    }

    public void setProbationership_month(String probationership_month) {
      this.probationership_month = probationership_month;
    }

    public void setBonus(String bonus) {
      this.bonus = bonus;
    }

    public void setOther_things(String other_things) {
      this.other_things = other_things;
    }

    public void setCustomer_id(String customer_id) {
      this.customer_id = customer_id;
    }

    public void setOrderstatus_id(String orderstatus_id) {
      this.orderstatus_id = orderstatus_id;
    }

    public int getOrder_id() {
      return order_id;
    }

    public String getCustomer_name() {
      return customer_name;
    }

    public String getBelongto() {
      return belongto;
    }

    public String getStart_time() {
      return start_time;
    }

    public String getFinish_time() {
      return finish_time;
    }

    public String getHas_done() {
      return has_done;
    }

    public String getWill_do() {
      return will_do;
    }

    public String getDepartment_name() {
      return department_name;
    }

    public String getResponsibility_by() {
      return responsibility_by;
    }

    public String getResponsibility_by_address() {
      return responsibility_by_address;
    }

    public String getResponsibility_by_phone() {
      return responsibility_by_phone;
    }

    public String getBelongto_department() {
      return belongto_department;
    }

    public String getJob_type() {
      return job_type;
    }

    public int getAge_from() {
      return age_from;
    }

    public int getAge_to() {
      return age_to;
    }

    public String getWorkplace() {
      return workplace;
    }

    public String getStart_work_time() {
      return start_work_time;
    }

    public String getNumber() {
      return number;
    }

    public String getJob_position() {
      return job_position;
    }

    public String getSex() {
      return sex;
    }

    public String getNationality() {
      return nationality;
    }

    public String getRegistered_residence() {
      return registered_residence;
    }

    public String getDegree() {
      return degree;
    }

    public String getMajor() {
      return major;
    }

    public String getLanguage_japanese_level() {
      return language_japanese_level;
    }

    public String getLanguage_englihs_level() {
      return language_englihs_level;
    }

    public String getDetail_work_todo() {
      return detail_work_todo;
    }

    public String getRequest_skill_work_expericence() {
      return request_skill_work_expericence;
    }

    public String getRequest_competency() {
      return request_competency;
    }

    public String getOther_competency() {
      return other_competency;
    }

    public String getSalary_method() {
      return salary_method;
    }

    public String getProbationership_month() {
      return probationership_month;
    }

    public String getBonus() {
      return bonus;
    }

    public String getOther_things() {
      return other_things;
    }

    public String getCustomer_id() {
      return customer_id;
    }

    public String getOrderstatus_id() {
      return orderstatus_id;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -