123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.fuzamei.entity;
- public class BusinessCheck {
- private String check_department; //审核部门
- private String check_person; //审核人员
- private Integer check_business_id; //被审核的业务id号,也就是业务id号,根据这个进行条件关联
- private String check_opinion; //审核意见
- private Long check_time; //审核时间
- private String result; //审核结果,需要关联状态表查询出状态的status_name------>varchar类型
- public String getCheck_department() {
- return check_department;
- }
- public void setCheck_department(String check_department) {
- this.check_department = check_department;
- }
- public String getCheck_person() {
- return check_person;
- }
- public void setCheck_person(String check_person) {
- this.check_person = check_person;
- }
- public Integer getCheck_business_id() {
- return check_business_id;
- }
- public void setCheck_business_id(Integer check_business_id) {
- this.check_business_id = check_business_id;
- }
- public String getCheck_opinion() {
- return check_opinion;
- }
- public void setCheck_opinion(String check_opinion) {
- this.check_opinion = check_opinion;
- }
- public Long getCheck_time() {
- return check_time;
- }
- public void setCheck_time(Long check_time) {
- this.check_time = check_time;
- }
- public String getResult() {
- return result;
- }
- public void setResult(String result) {
- this.result = result;
- }
-
-
- }
|