Commit a351f6e5 authored by neo's avatar neo

[dev]fixed mapp xml property ID to id

parent e208c603
...@@ -16,6 +16,7 @@ public class ProjectDisplayDto { ...@@ -16,6 +16,7 @@ public class ProjectDisplayDto {
private Date expiredDate ; private Date expiredDate ;
private Boolean haveCreateProject ; private Boolean haveCreateProject ;
private String id ; private String id ;
private String industryId ; private String industryId ;
private String industryName ; private String industryName ;
private Boolean isActive ; private Boolean isActive ;
......
...@@ -4,17 +4,17 @@ ...@@ -4,17 +4,17 @@
<!-- User defined --> <!-- User defined -->
<resultMap id="ResultMapWithAreaAndRegion" type="pwc.taxtech.atms.entity.AreaRegion"> <resultMap id="ResultMapWithAreaAndRegion" type="pwc.taxtech.atms.entity.AreaRegion">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="AREA_REGION_AREA_ID" jdbcType="VARCHAR" property="areaId"/> <result column="AREA_REGION_AREA_ID" jdbcType="VARCHAR" property="areaId"/>
<result column="AREA_REGION_REGION_ID" jdbcType="VARCHAR" property="regionId"/> <result column="AREA_REGION_REGION_ID" jdbcType="VARCHAR" property="regionId"/>
<association column="AREA_ID" javaType="pwc.taxtech.atms.entity.Area" property="area"> <association column="AREA_ID" javaType="pwc.taxtech.atms.entity.Area" property="area">
<id column="AREA_ID" property="ID"/> <id column="AREA_ID" property="id"/>
<result column="AREA_PARENT_ID" property="parentId"/> <result column="AREA_PARENT_ID" property="parentId"/>
<result column="AREA_NAME" property="name"/> <result column="AREA_NAME" property="name"/>
<result column="AREA_IS_ACTIVE" property="isActive"/> <result column="AREA_IS_ACTIVE" property="isActive"/>
</association> </association>
<association column="REGION_ID" javaType="pwc.taxtech.atms.entity.Region" property="region"> <association column="REGION_ID" javaType="pwc.taxtech.atms.entity.Region" property="region">
<id column="REGION_ID" property="ID"/> <id column="REGION_ID" property="id"/>
<result column="REGION_PARENT_ID" property="parentId"/> <result column="REGION_PARENT_ID" property="parentId"/>
<result column="REGION_NAME" property="name"/> <result column="REGION_NAME" property="name"/>
<result column="REGION_SHORT_NAME" property="shortName"/> <result column="REGION_SHORT_NAME" property="shortName"/>
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
</select> </select>
<resultMap id="resultMapAreaRegionDto" type="pwc.taxtech.atms.dto.arearegion.AreaRegionDto"> <resultMap id="resultMapAreaRegionDto" type="pwc.taxtech.atms.dto.arearegion.AreaRegionDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="AREA_ID" property="areaId"/> <result column="AREA_ID" property="areaId"/>
<result column="REGION_NAME" property="regionName"/> <result column="REGION_NAME" property="regionName"/>
<result column="REGION_ID" property="regionId"/> <result column="REGION_ID" property="regionId"/>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.BusinessUnitMapper"> <mapper namespace="pwc.taxtech.atms.dao.BusinessUnitMapper">
<resultMap id="OrganizationDto" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrganizationDto" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="ORGANIZATION_NAME" jdbcType="VARCHAR" property="name"/> <result column="ORGANIZATION_NAME" jdbcType="VARCHAR" property="name"/>
<result column="INDUSTRY_NAME" jdbcType="VARCHAR" property="industryName"/> <result column="INDUSTRY_NAME" jdbcType="VARCHAR" property="industryName"/>
<result column="BUSINESS_UNIT_NAME" jdbcType="VARCHAR" property="businessUnitName"/> <result column="BUSINESS_UNIT_NAME" jdbcType="VARCHAR" property="businessUnitName"/>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.DimensionMapper"> <mapper namespace="pwc.taxtech.atms.dao.DimensionMapper">
<resultMap id="OrganizationDto" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrganizationDto" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="DIMENSION_ID" jdbcType="VARCHAR" property="dimensionId"/> <result column="DIMENSION_ID" jdbcType="VARCHAR" property="dimensionId"/>
<result column="DIMENSION_NAME" jdbcType="VARCHAR" property="dimensionName"/> <result column="DIMENSION_NAME" jdbcType="VARCHAR" property="dimensionName"/>
<result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/> <result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</select> </select>
<resultMap id="DimensionValueJoinDimensionDto" type="pwc.taxtech.atms.dto.dimension.DimensionValueJoinDimensionDto"> <resultMap id="DimensionValueJoinDimensionDto" type="pwc.taxtech.atms.dto.dimension.DimensionValueJoinDimensionDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="DIMENSION_NAME" jdbcType="VARCHAR" property="dimensionName"/> <result column="DIMENSION_NAME" jdbcType="VARCHAR" property="dimensionName"/>
<result column="DIMENSION_VALUE" jdbcType="VARCHAR" property="dimensionValue"/> <result column="DIMENSION_VALUE" jdbcType="VARCHAR" property="dimensionValue"/>
<result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/> <result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.DimensionValueOrgMapper"> <mapper namespace="pwc.taxtech.atms.dao.DimensionValueOrgMapper">
<resultMap id="UnionDimensionValueOrg" type="pwc.taxtech.atms.dto.dimension.UnionDimensionValueOrg"> <resultMap id="UnionDimensionValueOrg" type="pwc.taxtech.atms.dto.dimension.UnionDimensionValueOrg">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/> <result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/>
<result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/> <result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/>
<result column="DIMENSION_ID" jdbcType="VARCHAR" property="dimensionId"/> <result column="DIMENSION_ID" jdbcType="VARCHAR" property="dimensionId"/>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
</if> </if>
</select> </select>
<resultMap id="EnterpriseAccountSetOrgDto" type="pwc.taxtech.atms.dpo.EnterpriseAccountSetOrgDto"> <resultMap id="EnterpriseAccountSetOrgDto" type="pwc.taxtech.atms.dpo.EnterpriseAccountSetOrgDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="ENTERPRISE_ACCOUNT_SET_ID" jdbcType="VARCHAR" property="enterpriseAccountSetId"/> <result column="ENTERPRISE_ACCOUNT_SET_ID" jdbcType="VARCHAR" property="enterpriseAccountSetId"/>
<result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/> <result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/>
<result column="EFFECTIVE_DATE" jdbcType="VARCHAR" property="effectiveDate"/> <result column="EFFECTIVE_DATE" jdbcType="VARCHAR" property="effectiveDate"/>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.ModelConfigMapper"> <mapper namespace="pwc.taxtech.atms.dao.ModelConfigMapper">
<resultMap id="getModelListByIndustryResult" type="pwc.taxtech.atms.dpo.ModelProfileDto"> <resultMap id="getModelListByIndustryResult" type="pwc.taxtech.atms.dpo.ModelProfileDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/> <result column="NAME" jdbcType="VARCHAR" property="name"/>
<result column="CATEGORY_ID" jdbcType="VARCHAR" property="categoryId"/> <result column="CATEGORY_ID" jdbcType="VARCHAR" property="categoryId"/>
<result column="CATEGORY_STRING" jdbcType="VARCHAR" property="categoryString"/> <result column="CATEGORY_STRING" jdbcType="VARCHAR" property="categoryString"/>
......
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
</select> </select>
<resultMap id="OrganizationDto" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrganizationDto" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<!-- 注意! OrganizationName 对应 name--> <!-- 注意! OrganizationName 对应 name-->
<result column="ORGANIZATION_NAME" jdbcType="VARCHAR" property="name"/> <result column="ORGANIZATION_NAME" jdbcType="VARCHAR" property="name"/>
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
</select> </select>
<resultMap id="OrganizationDtoForAreaRegIndBusList" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrganizationDtoForAreaRegIndBusList" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/> <result column="NAME" jdbcType="VARCHAR" property="name"/>
<result column="BUSINESS_UNIT_ID" jdbcType="VARCHAR" property="businessUnitId"/> <result column="BUSINESS_UNIT_ID" jdbcType="VARCHAR" property="businessUnitId"/>
<result column="BUSINESS_UNIT_NAME" jdbcType="VARCHAR" property="businessUnitName"/> <result column="BUSINESS_UNIT_NAME" jdbcType="VARCHAR" property="businessUnitName"/>
...@@ -222,7 +222,7 @@ ...@@ -222,7 +222,7 @@
</resultMap> </resultMap>
<resultMap id="OrganizationDtoForCDOrgList" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrganizationDtoForCDOrgList" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/> <result column="NAME" jdbcType="VARCHAR" property="name"/>
<result column="ATTRIBUTE_ID" jdbcType="VARCHAR" property="attributeId"/> <result column="ATTRIBUTE_ID" jdbcType="VARCHAR" property="attributeId"/>
<result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName"/> <result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName"/>
...@@ -269,7 +269,7 @@ ...@@ -269,7 +269,7 @@
</select> </select>
<resultMap id="OrgDtoForGetDimValueOrgList" type="pwc.taxtech.atms.dpo.DimensionValueOrgDto"> <resultMap id="OrgDtoForGetDimValueOrgList" type="pwc.taxtech.atms.dpo.DimensionValueOrgDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/> <result column="DIMENSION_VALUE_ID" jdbcType="VARCHAR" property="dimensionValueId"/>
<result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/> <result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/>
<result column="ORGANIZATION_NAME" jdbcType="VARCHAR" property="organizationName"/> <result column="ORGANIZATION_NAME" jdbcType="VARCHAR" property="organizationName"/>
...@@ -417,7 +417,7 @@ ...@@ -417,7 +417,7 @@
</select> </select>
<resultMap id="OrgDtoForGetAllCusDimOrgList" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrgDtoForGetAllCusDimOrgList" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/> <result column="NAME" jdbcType="VARCHAR" property="name"/>
<result column="ATTRIBUTE_ID" jdbcType="VARCHAR" property="attributeId"/> <result column="ATTRIBUTE_ID" jdbcType="VARCHAR" property="attributeId"/>
<result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName"/> <result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName"/>
...@@ -469,7 +469,7 @@ ...@@ -469,7 +469,7 @@
</select> </select>
<resultMap id="OrgDtoForGetSingleOrgByOrgID" type="pwc.taxtech.atms.dpo.OrganizationDto"> <resultMap id="OrgDtoForGetSingleOrgByOrgID" type="pwc.taxtech.atms.dpo.OrganizationDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="CLIENT_CODE" jdbcType="VARCHAR" property="clientCode"/> <result column="CLIENT_CODE" jdbcType="VARCHAR" property="clientCode"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/> <result column="NAME" jdbcType="VARCHAR" property="name"/>
<result column="ENGLISH_NAME" jdbcType="VARCHAR" property="englishName"/> <result column="ENGLISH_NAME" jdbcType="VARCHAR" property="englishName"/>
...@@ -585,7 +585,7 @@ ...@@ -585,7 +585,7 @@
</select> </select>
<resultMap id="OrgGeneralInfoMiddleDto" type="pwc.taxtech.atms.dto.organization.OrgGeneralInfoMiddleDto"> <resultMap id="OrgGeneralInfoMiddleDto" type="pwc.taxtech.atms.dto.organization.OrgGeneralInfoMiddleDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="ORG_NAME" jdbcType="VARCHAR" property="orgName"/> <result column="ORG_NAME" jdbcType="VARCHAR" property="orgName"/>
<result column="TAX_PAYER_NUMBER" jdbcType="VARCHAR" property="taxPayerNumber"/> <result column="TAX_PAYER_NUMBER" jdbcType="VARCHAR" property="taxPayerNumber"/>
<result column="ACCOUNT_SET_NAME" jdbcType="VARCHAR" property="accountSetName"/> <result column="ACCOUNT_SET_NAME" jdbcType="VARCHAR" property="accountSetName"/>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.OrganizationServiceTemplateGroupMapper"> <mapper namespace="pwc.taxtech.atms.dao.OrganizationServiceTemplateGroupMapper">
<resultMap id="OrganizationServiceTemplateGroupDto" type="pwc.taxtech.atms.dpo.OrganizationServiceTemplateGroupDto"> <resultMap id="OrganizationServiceTemplateGroupDto" type="pwc.taxtech.atms.dpo.OrganizationServiceTemplateGroupDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="SERVICE_TYPE_ID" jdbcType="VARCHAR" property="serviceTypeId"/> <result column="SERVICE_TYPE_ID" jdbcType="VARCHAR" property="serviceTypeId"/>
<result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/> <result column="ORGANIZATION_ID" jdbcType="VARCHAR" property="organizationId"/>
<result column="TEMPLATE_GROUP_ID" jdbcType="VARCHAR" property="templateGroupId"/> <result column="TEMPLATE_GROUP_ID" jdbcType="VARCHAR" property="templateGroupId"/>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<resultMap extends="BaseResultMap" id="ResultMapWithAssociation" type="pwc.taxtech.atms.entity.RolePermission"> <resultMap extends="BaseResultMap" id="ResultMapWithAssociation" type="pwc.taxtech.atms.entity.RolePermission">
<association column="ROLE_ID" javaType="pwc.taxtech.atms.entity.Role" property="role"> <association column="ROLE_ID" javaType="pwc.taxtech.atms.entity.Role" property="role">
<id column="ROLE_ID" property="ID"/> <id column="ROLE_ID" property="id"/>
<result column="ROLE_NAME" property="name"/> <result column="ROLE_NAME" property="name"/>
<result column="ROLE_DESCRIPTION" property="description"/> <result column="ROLE_DESCRIPTION" property="description"/>
<result column="ROLE_CATEGORY_ID" property="roleCategoryId"/> <result column="ROLE_CATEGORY_ID" property="roleCategoryId"/>
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<result column="ROLE_UPDATE_TIME" property="updateTime"/> <result column="ROLE_UPDATE_TIME" property="updateTime"/>
</association> </association>
<association column="PERMISSION_ID" javaType="pwc.taxtech.atms.entity.Permission" property="permission"> <association column="PERMISSION_ID" javaType="pwc.taxtech.atms.entity.Permission" property="permission">
<id column="PERMISSION_ID" property="ID"/> <id column="PERMISSION_ID" property="id"/>
<result column="PERMISSION_NAME" property="name"/> <result column="PERMISSION_NAME" property="name"/>
<result column="PERMISSION_CODE" property="code"/> <result column="PERMISSION_CODE" property="code"/>
<result column="PERMISSION_PARENT_ID" property="parentId"/> <result column="PERMISSION_PARENT_ID" property="parentId"/>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.UserDimensionValueRoleMapper"> <mapper namespace="pwc.taxtech.atms.dao.UserDimensionValueRoleMapper">
<resultMap id="UserOrgRoleDto" type="pwc.taxtech.atms.dpo.UserOrgRoleDto"> <resultMap id="UserOrgRoleDto" type="pwc.taxtech.atms.dpo.UserOrgRoleDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/> <result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/>
<result column="ROLE_NAME" jdbcType="VARCHAR" property="roleName"/> <result column="ROLE_NAME" jdbcType="VARCHAR" property="roleName"/>
</resultMap> </resultMap>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.UserOrganizationRoleMapper"> <mapper namespace="pwc.taxtech.atms.dao.UserOrganizationRoleMapper">
<resultMap id="UserOrgRoleDto" type="pwc.taxtech.atms.dpo.UserOrgRoleDto"> <resultMap id="UserOrgRoleDto" type="pwc.taxtech.atms.dpo.UserOrgRoleDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/> <result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/>
<result column="ROLE_NAME" jdbcType="VARCHAR" property="roleName"/> <result column="ROLE_NAME" jdbcType="VARCHAR" property="roleName"/>
</resultMap> </resultMap>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="pwc.taxtech.atms.dao.UserRoleMapper"> <mapper namespace="pwc.taxtech.atms.dao.UserRoleMapper">
<resultMap id="UserRoleQuery" type="pwc.taxtech.atms.dto.user.UserRoleQuery"> <resultMap id="UserRoleQuery" type="pwc.taxtech.atms.dto.user.UserRoleQuery">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="USER_ID" jdbcType="VARCHAR" property="userId"/> <result column="USER_ID" jdbcType="VARCHAR" property="userId"/>
<result column="USER_NAME" jdbcType="VARCHAR" property="userName"/> <result column="USER_NAME" jdbcType="VARCHAR" property="userName"/>
<result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/> <result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/>
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
</select> </select>
<resultMap id="UserOrgRoleDto" type="pwc.taxtech.atms.dpo.UserOrgRoleDto"> <resultMap id="UserOrgRoleDto" type="pwc.taxtech.atms.dpo.UserOrgRoleDto">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="USER_ID" jdbcType="VARCHAR" property="userId"/> <result column="USER_ID" jdbcType="VARCHAR" property="userId"/>
<result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/> <result column="ROLE_ID" jdbcType="VARCHAR" property="roleId"/>
<result column="ROLE_NAME" jdbcType="VARCHAR" property="roleName"/> <result column="ROLE_NAME" jdbcType="VARCHAR" property="roleName"/>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
WARNING - @mbg.generated WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify. This element is automatically generated by MyBatis Generator, do not modify.
--> -->
<id column="ID" jdbcType="VARCHAR" property="ID" /> <id column="ID" jdbcType="VARCHAR" property="id" />
<result column="AcctCode" jdbcType="VARCHAR" property="acctCode" /> <result column="AcctCode" jdbcType="VARCHAR" property="acctCode" />
<result column="Name" jdbcType="VARCHAR" property="name" /> <result column="Name" jdbcType="VARCHAR" property="name" />
<result column="ParentCode" jdbcType="VARCHAR" property="parentCode" /> <result column="ParentCode" jdbcType="VARCHAR" property="parentCode" />
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
WARNING - @mbg.generated WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify. This element is automatically generated by MyBatis Generator, do not modify.
--> -->
<id column="ID" jdbcType="VARCHAR" property="ID" /> <id column="ID" jdbcType="VARCHAR" property="id" />
<result column="OperationName" jdbcType="VARCHAR" property="operationName" /> <result column="OperationName" jdbcType="VARCHAR" property="operationName" />
<result column="ModuleID" jdbcType="INTEGER" property="moduleID" /> <result column="ModuleID" jdbcType="INTEGER" property="moduleID" />
<result column="OperationObject" jdbcType="VARCHAR" property="operationObject" /> <result column="OperationObject" jdbcType="VARCHAR" property="operationObject" />
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
WARNING - @mbg.generated WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify. This element is automatically generated by MyBatis Generator, do not modify.
--> -->
<id column="ID" jdbcType="VARCHAR" property="ID" /> <id column="ID" jdbcType="VARCHAR" property="id" />
<result column="Code" jdbcType="VARCHAR" property="code" /> <result column="Code" jdbcType="VARCHAR" property="code" />
<result column="Name" jdbcType="VARCHAR" property="name" /> <result column="Name" jdbcType="VARCHAR" property="name" />
<result column="ParentCode" jdbcType="VARCHAR" property="parentCode" /> <result column="ParentCode" jdbcType="VARCHAR" property="parentCode" />
......
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
<resultMap id="inputVATInvoiceResultDto" type="pwc.taxtech.atms.dto.vatdto.InputVATInvoiceResultDto"> <resultMap id="inputVATInvoiceResultDto" type="pwc.taxtech.atms.dto.vatdto.InputVATInvoiceResultDto">
<id property="invoiceID" column="invoice_id"/> <id property="invoiceID" column="invoice_id"/>
<association property="inputVATInvoice" javaType="pwc.taxtech.atms.vat.entity.InputVatInvoice"> <association property="inputVATInvoice" javaType="pwc.taxtech.atms.vat.entity.InputVatInvoice">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="PERIOD_ID" jdbcType="INTEGER" property="periodId"/> <result column="PERIOD_ID" jdbcType="INTEGER" property="periodId"/>
<result column="INVOICE_CODE" jdbcType="VARCHAR" property="invoiceCode"/> <result column="INVOICE_CODE" jdbcType="VARCHAR" property="invoiceCode"/>
<result column="INVOICE_NUMBER" jdbcType="VARCHAR" property="invoiceNumber"/> <result column="INVOICE_NUMBER" jdbcType="VARCHAR" property="invoiceNumber"/>
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
<result column="ACCNTED_PERIOD" jdbcType="INTEGER" property="accntedPeriod"/> <result column="ACCNTED_PERIOD" jdbcType="INTEGER" property="accntedPeriod"/>
</association> </association>
<association property="inputVATInvoiceItem" javaType="pwc.taxtech.atms.vat.entity.InputVatInvoiceItem"> <association property="inputVATInvoiceItem" javaType="pwc.taxtech.atms.vat.entity.InputVatInvoiceItem">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="INPUT_VAT_INVOICE_ID" jdbcType="VARCHAR" property="inputVATInvoiceId"/> <result column="INPUT_VAT_INVOICE_ID" jdbcType="VARCHAR" property="inputVATInvoiceId"/>
<result column="PERIOD_ID" jdbcType="INTEGER" property="periodId"/> <result column="PERIOD_ID" jdbcType="INTEGER" property="periodId"/>
<result column="INVOICE_CODE" jdbcType="VARCHAR" property="invoiceCode"/> <result column="INVOICE_CODE" jdbcType="VARCHAR" property="invoiceCode"/>
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
<result column="PRODUCTION_CODE" jdbcType="VARCHAR" property="productionCode"/> <result column="PRODUCTION_CODE" jdbcType="VARCHAR" property="productionCode"/>
</association> </association>
<association property="goodsMapping" javaType="pwc.taxtech.atms.vat.entity.GoodsMapping"> <association property="goodsMapping" javaType="pwc.taxtech.atms.vat.entity.GoodsMapping">
<id column="ID" jdbcType="VARCHAR" property="ID"/> <id column="ID" jdbcType="VARCHAR" property="id"/>
<result column="CUST_GOODS_NAME" jdbcType="VARCHAR" property="custGoodsName"/> <result column="CUST_GOODS_NAME" jdbcType="VARCHAR" property="custGoodsName"/>
<result column="STD_GOODS_NAME" jdbcType="VARCHAR" property="stdGoodsName"/> <result column="STD_GOODS_NAME" jdbcType="VARCHAR" property="stdGoodsName"/>
<result column="CREATOR_ID" jdbcType="VARCHAR" property="creatorId"/> <result column="CREATOR_ID" jdbcType="VARCHAR" property="creatorId"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment