Browse Source

1.CustomerDepartment中的字段org_id改为agency_id

dev_shibei_match
wxz 6 years ago
parent
commit
0b50a182f3
  1. 4
      epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/entity/CustomerDepartmentEntity.java
  2. 2
      epmet-module/gov-org/gov-org-server/src/main/resources/mapper/CustomerDepartmentDao.xml

4
epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/entity/CustomerDepartmentEntity.java

@ -44,9 +44,9 @@ public class CustomerDepartmentEntity extends BaseEpmetEntity {
private String customerId;
/**
* 所属组织机构IDcustomer_organization.id
* 所属组织机构IDcustomer_agency.id
*/
private String orgId;
private String agencyId;
/**
* 部门名称

2
epmet-module/gov-org/gov-org-server/src/main/resources/mapper/CustomerDepartmentDao.xml

@ -6,7 +6,7 @@
<resultMap type="com.epmet.entity.CustomerDepartmentEntity" id="customerDepartmentMap">
<result property="id" column="ID"/>
<result property="customerId" column="CUSTOMER_ID"/>
<result property="orgId" column="ORG_ID"/>
<result property="agencyId" column="AGENCY_ID"/>
<result property="departmentName" column="DEPARTMENT_NAME"/>
<result property="departmentDuty" column="DEPARTMENT_DUTY"/>
<result property="totalUser" column="TOTAL_USER"/>

Loading…
Cancel
Save