TProAppInforBrowse.java 11.2 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
package com.zehong.system.domain;

import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

/**
 * 行业专家库-专家库浏览对象 t_pro_app_infor_browse
 * 
 * @author zehong
 * @date 2024-05-08
 */
public class TProAppInforBrowse extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** id */
    private Long fProAppInforId;

    /** 人员编码 */
    @Excel(name = "人员编码")
    private String fCode;

    /** 专家姓名 */
    @Excel(name = "专家姓名")
    private String fName;

    /** 身份证号 */
    @Excel(name = "身份证号")
    private String fIdNo;

    /** 性别:1-男性,2-女性 */
    @Excel(name = "性别",dictType = "t_sex")
    private String fSex;

    /** 出生日期 */
    @Excel(name = "出生日期")
    private String fBirthday;

    /** 邮箱 */
    @Excel(name = "邮箱")
    private String fEmail;

    /** 联系电话 */
    @Excel(name = "联系电话")
    private String fPhone;

    /** 文化程度 */
    @Excel(name = "文化程度")
    private String fEducation;

    /** 毕业院校 */
    @Excel(name = "毕业院校")
    private String fGraduationSchool;

    /** 所属专业 */
    @Excel(name = "所属专业")
    private String fMajor;

    /** 毕业时间 */
    @Excel(name = "毕业时间")
    private String fGraduationTime;

    /** 工作单位编码 */
    @Excel(name = "工作单位编码")
    private String fEntUuid;

    /** 工作单位名称 */
    @Excel(name = "工作单位名称")
    private String fWorkUnit;

    /** 参加工作时间 */
    @Excel(name = "参加工作时间")
    private String fWorkTime;

    /** 所在部门 */
    @Excel(name = "所在部门")
    private String fDepartment;

    /** 职务 */
    @Excel(name = "职务")
    private String fDuties;

    /** 专业技术职称 */
    @Excel(name = "专业技术职称")
    private String fMajorTitle;

    /** 现从事专业 */
    @Excel(name = "现从事专业")
    private String fMajorNow;

    /** 从事专业工作年限 */
    @Excel(name = "从事专业工作年限")
    private Long fMajorLife;

    /** 从事行业燃气种类

            03-0100-0101:管道燃气

            03-0100-0102:液化天然气(LNG)

            03-0100-0103:压缩天然气(CNG)

            03-0200:液化石油气(LPG)

            03-0300:人工煤气

            03-0400:液化石油气混空气

            03-0500:沼气

            03-0600:氢气 */
    @Excel(name = "燃气种类",dictType = "t_gas_type")
    private String fGasType;

    /** 擅长工作领域 */
    @Excel(name = "擅长工作领域")
    private String fGoodArea;

    /** 相关学习工作经历及工作业绩 */
    @Excel(name = "相关学习工作经历及工作业绩")
    private String fLearningWorkExperience;

    /** 所在地区 */
    @Excel(name = "所在地区")
    private String fArea;

    /** 删除标记,0-可用,1-已删除 */
    @Excel(name = "删除标记",readConverterExp = "0=可用,1=已删除")
    private Long fDeleteFlag;

    /** 市局燃气主管部门意见 */
    @Excel(name = "市局燃气主管部门意见")
    private String fCRecord;

    /** 省级燃气主管部门意见 */
    @Excel(name = "省级燃气主管部门意见")
    private String fPRecord;

    /** 照片 */
    @Excel(name = "照片")
    private String fPicture;

    /** 最后修改时间 */
    @Excel(name = "最后修改时间")
    private String fUpdateTime;

    /** 是否省级专家 1 是,0 不是 */
    @Excel(name = "是否省级专家",dictType = "t_province_mark")
    private String fThisProvinceFlag;

    /** 是否有效:0 有效,1 无效 */
    @Excel(name = "是否有效",dictType = "t_valid_type")
    private Long fValidType;

    /** 聘用批次 */
    @Excel(name = "聘用批次")
    private String fEmployBatch;

xulihui's avatar
xulihui committed
161 162 163 164 165 166 167 168 169 170 171
    private String fShowName;

    public String getfShowName() {
        return fShowName;
    }

    public void setfShowName(String fShowName) {
        this.fShowName = fShowName;
    }

    public void setfProAppInforId(Long fProAppInforId)
耿迪迪's avatar
耿迪迪 committed
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
    {
        this.fProAppInforId = fProAppInforId;
    }

    public Long getfProAppInforId() 
    {
        return fProAppInforId;
    }
    public void setfCode(String fCode) 
    {
        this.fCode = fCode;
    }

    public String getfCode() 
    {
        return fCode;
    }
    public void setfName(String fName) 
    {
        this.fName = fName;
    }

    public String getfName() 
    {
        return fName;
    }
    public void setfIdNo(String fIdNo) 
    {
        this.fIdNo = fIdNo;
    }

    public String getfIdNo() 
    {
        return fIdNo;
    }
    public void setfSex(String fSex) 
    {
        this.fSex = fSex;
    }

    public String getfSex() 
    {
        return fSex;
    }
    public void setfBirthday(String fBirthday) 
    {
        this.fBirthday = fBirthday;
    }

    public String getfBirthday() 
    {
        return fBirthday;
    }
    public void setfEmail(String fEmail) 
    {
        this.fEmail = fEmail;
    }

    public String getfEmail() 
    {
        return fEmail;
    }
    public void setfPhone(String fPhone) 
    {
        this.fPhone = fPhone;
    }

    public String getfPhone() 
    {
        return fPhone;
    }
    public void setfEducation(String fEducation) 
    {
        this.fEducation = fEducation;
    }

    public String getfEducation() 
    {
        return fEducation;
    }
    public void setfGraduationSchool(String fGraduationSchool) 
    {
        this.fGraduationSchool = fGraduationSchool;
    }

    public String getfGraduationSchool() 
    {
        return fGraduationSchool;
    }
    public void setfMajor(String fMajor) 
    {
        this.fMajor = fMajor;
    }

    public String getfMajor() 
    {
        return fMajor;
    }
    public void setfGraduationTime(String fGraduationTime) 
    {
        this.fGraduationTime = fGraduationTime;
    }

    public String getfGraduationTime() 
    {
        return fGraduationTime;
    }
    public void setfEntUuid(String fEntUuid) 
    {
        this.fEntUuid = fEntUuid;
    }

    public String getfEntUuid() 
    {
        return fEntUuid;
    }
    public void setfWorkUnit(String fWorkUnit) 
    {
        this.fWorkUnit = fWorkUnit;
    }

    public String getfWorkUnit() 
    {
        return fWorkUnit;
    }
    public void setfWorkTime(String fWorkTime) 
    {
        this.fWorkTime = fWorkTime;
    }

    public String getfWorkTime() 
    {
        return fWorkTime;
    }
    public void setfDepartment(String fDepartment) 
    {
        this.fDepartment = fDepartment;
    }

    public String getfDepartment() 
    {
        return fDepartment;
    }
    public void setfDuties(String fDuties) 
    {
        this.fDuties = fDuties;
    }

    public String getfDuties() 
    {
        return fDuties;
    }
    public void setfMajorTitle(String fMajorTitle) 
    {
        this.fMajorTitle = fMajorTitle;
    }

    public String getfMajorTitle() 
    {
        return fMajorTitle;
    }
    public void setfMajorNow(String fMajorNow) 
    {
        this.fMajorNow = fMajorNow;
    }

    public String getfMajorNow() 
    {
        return fMajorNow;
    }
    public void setfMajorLife(Long fMajorLife) 
    {
        this.fMajorLife = fMajorLife;
    }

    public Long getfMajorLife() 
    {
        return fMajorLife;
    }
    public void setfGasType(String fGasType) 
    {
        this.fGasType = fGasType;
    }

    public String getfGasType() 
    {
        return fGasType;
    }
    public void setfGoodArea(String fGoodArea) 
    {
        this.fGoodArea = fGoodArea;
    }

    public String getfGoodArea() 
    {
        return fGoodArea;
    }
    public void setfLearningWorkExperience(String fLearningWorkExperience) 
    {
        this.fLearningWorkExperience = fLearningWorkExperience;
    }

    public String getfLearningWorkExperience() 
    {
        return fLearningWorkExperience;
    }
    public void setfArea(String fArea) 
    {
        this.fArea = fArea;
    }

    public String getfArea() 
    {
        return fArea;
    }
    public void setfDeleteFlag(Long fDeleteFlag) 
    {
        this.fDeleteFlag = fDeleteFlag;
    }

    public Long getfDeleteFlag() 
    {
        return fDeleteFlag;
    }
    public void setfCRecord(String fCRecord) 
    {
        this.fCRecord = fCRecord;
    }

    public String getfCRecord() 
    {
        return fCRecord;
    }
    public void setfPRecord(String fPRecord) 
    {
        this.fPRecord = fPRecord;
    }

    public String getfPRecord() 
    {
        return fPRecord;
    }
    public void setfPicture(String fPicture) 
    {
        this.fPicture = fPicture;
    }

    public String getfPicture() 
    {
        return fPicture;
    }
    public void setfUpdateTime(String fUpdateTime) 
    {
        this.fUpdateTime = fUpdateTime;
    }

    public String getfUpdateTime() 
    {
        return fUpdateTime;
    }
    public void setfThisProvinceFlag(String fThisProvinceFlag) 
    {
        this.fThisProvinceFlag = fThisProvinceFlag;
    }

    public String getfThisProvinceFlag() 
    {
        return fThisProvinceFlag;
    }
    public void setfValidType(Long fValidType) 
    {
        this.fValidType = fValidType;
    }

    public Long getfValidType() 
    {
        return fValidType;
    }
    public void setfEmployBatch(String fEmployBatch) 
    {
        this.fEmployBatch = fEmployBatch;
    }

    public String getfEmployBatch() 
    {
        return fEmployBatch;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("fProAppInforId", getfProAppInforId())
            .append("fCode", getfCode())
            .append("fName", getfName())
            .append("fIdNo", getfIdNo())
            .append("fSex", getfSex())
            .append("fBirthday", getfBirthday())
            .append("fEmail", getfEmail())
            .append("fPhone", getfPhone())
            .append("fEducation", getfEducation())
            .append("fGraduationSchool", getfGraduationSchool())
            .append("fMajor", getfMajor())
            .append("fGraduationTime", getfGraduationTime())
            .append("fEntUuid", getfEntUuid())
            .append("fWorkUnit", getfWorkUnit())
            .append("fWorkTime", getfWorkTime())
            .append("fDepartment", getfDepartment())
            .append("fDuties", getfDuties())
            .append("fMajorTitle", getfMajorTitle())
            .append("fMajorNow", getfMajorNow())
            .append("fMajorLife", getfMajorLife())
            .append("fGasType", getfGasType())
            .append("fGoodArea", getfGoodArea())
            .append("fLearningWorkExperience", getfLearningWorkExperience())
            .append("fArea", getfArea())
            .append("fDeleteFlag", getfDeleteFlag())
            .append("fCRecord", getfCRecord())
            .append("fPRecord", getfPRecord())
            .append("fPicture", getfPicture())
            .append("fUpdateTime", getfUpdateTime())
            .append("fThisProvinceFlag", getfThisProvinceFlag())
            .append("fValidType", getfValidType())
            .append("fEmployBatch", getfEmployBatch())
            .toString();
    }
}