From c549e29b22a25e6d2e11565148615ac7eb465ad2 Mon Sep 17 00:00:00 2001 From: Mlxa0324 Date: Mon, 6 Mar 2023 16:32:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=84=E9=87=91=E8=B4=A6=E6=88=B7=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/sql/mysql/3.tianze-pro-account.sql | 60 +-- .../entity/StudentAccountAssetAllocation.java | 485 ++---------------- .../StudentAccountAssetAllocationService.java | 18 +- .../StudentAccountAssetAllocationQuery.java | 257 +--------- 4 files changed, 118 insertions(+), 702 deletions(-) diff --git a/doc/sql/mysql/3.tianze-pro-account.sql b/doc/sql/mysql/3.tianze-pro-account.sql index 66c31b83..57680065 100644 --- a/doc/sql/mysql/3.tianze-pro-account.sql +++ b/doc/sql/mysql/3.tianze-pro-account.sql @@ -4,36 +4,36 @@ SET FOREIGN_KEY_CHECKS = 0; drop table if exists student_account_asset_allocation; CREATE TABLE `student_account_asset_allocation` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键ID', - `student_id` bigint(20) DEFAULT NULL COMMENT '学生ID', - `application_id` bigint(20) DEFAULT NULL COMMENT '应用ID', - `universities_colleges_id` bigint(20) DEFAULT NULL COMMENT '院校ID', - `name` decimal(15,0) DEFAULT NULL COMMENT '账户名称', - `state` tinyint(2) DEFAULT NULL COMMENT '账户开通状态 1:未开通 2:已开通', - `initial_capital` decimal(15,0) DEFAULT NULL COMMENT '期初资金', - `available_funds` decimal(15,0) DEFAULT NULL COMMENT '可用资金', - `into_account` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '转入账户', - `transfer_amount` decimal(15,0) DEFAULT NULL COMMENT '转账金额', - `transferIn_amount` decimal(15,0) DEFAULT NULL COMMENT '转入金额', - `transfer_out_amount` decimal(15,0) DEFAULT NULL COMMENT '转出金额', - `initial_investment_capital` decimal(15,0) DEFAULT NULL COMMENT '期初投资资金', - `borrowed_funds` decimal(15,0) DEFAULT NULL COMMENT '借入资金', - `investment_funds` decimal(15,0) DEFAULT NULL COMMENT '投资资金', - `investment_value` decimal(15,0) DEFAULT NULL COMMENT '投资市值', - `investment_income` decimal(15,0) DEFAULT NULL COMMENT '投资收益', - `total_assets_of_sub_accounts` decimal(15,0) DEFAULT NULL COMMENT '子账户总资产', - `asset_Investment` decimal(15,0) DEFAULT NULL COMMENT '总资产投资收益率', - `return_on_equity` decimal(15,0) DEFAULT NULL COMMENT '净资产收益率', - `is_update` tinyint(2) DEFAULT NULL COMMENT '是否给予初始值 1:未给 2:已给', - `amount_frozen` decimal(15,0) DEFAULT NULL COMMENT '冻结金额', - `update_version` bigint(20) DEFAULT NULL COMMENT '乐观锁', - `update_by` bigint(20) DEFAULT NULL COMMENT '修改人', - `update_time` datetime DEFAULT NULL COMMENT '修改时间', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `is_del` tinyint(2) DEFAULT '0' COMMENT '是否删除 1:正常,2:删除', - `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID', - `org_id` bigint(20) DEFAULT NULL COMMENT '机构ID', - PRIMARY KEY (`id`) + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键ID', + `student_id` bigint(20) DEFAULT NULL COMMENT '学生ID', + `application_id` bigint(20) DEFAULT NULL COMMENT '应用ID', + `universities_colleges_id` bigint(20) DEFAULT NULL COMMENT '院校ID', + `name` varchar(100) DEFAULT NULL COMMENT '账户名称', + `state` tinyint(2) DEFAULT NULL COMMENT '账户开通状态 1:未开通 2:已开通', + `initial_capital` decimal(15,2) DEFAULT NULL COMMENT '期初资金', + `available_funds` decimal(15,2) DEFAULT NULL COMMENT '可用资金', + `into_account` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '转入账户', + `transfer_amount` decimal(15,2) DEFAULT NULL COMMENT '转账金额', + `transferIn_amount` decimal(15,2) DEFAULT NULL COMMENT '转入金额', + `transfer_out_amount` decimal(15,2) DEFAULT NULL COMMENT '转出金额', + `initial_investment_capital` decimal(15,2) DEFAULT NULL COMMENT '期初投资资金', + `borrowed_funds` decimal(15,2) DEFAULT NULL COMMENT '借入资金', + `investment_funds` decimal(15,2) DEFAULT NULL COMMENT '投资资金', + `investment_value` decimal(15,2) DEFAULT NULL COMMENT '投资市值', + `investment_income` decimal(15,2) DEFAULT NULL COMMENT '投资收益', + `total_assets_of_sub_accounts` decimal(15,2) DEFAULT NULL COMMENT '子账户总资产', + `asset_Investment` decimal(15,2) DEFAULT NULL COMMENT '总资产投资收益率', + `return_on_equity` decimal(15,2) DEFAULT NULL COMMENT '净资产收益率', + `is_update` tinyint(2) DEFAULT NULL COMMENT '是否给予初始值 1:未给 2:已给', + `amount_frozen` decimal(15,2) DEFAULT NULL COMMENT '冻结金额', + `update_version` bigint(20) DEFAULT NULL COMMENT '乐观锁', + `update_by` varchar(100) DEFAULT NULL COMMENT '修改人', + `update_time` datetime DEFAULT NULL COMMENT '修改时间', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `is_del` tinyint(2) DEFAULT '0' COMMENT '是否删除 1:正常,2:删除', + `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID', + `org_id` bigint(20) DEFAULT NULL COMMENT '机构ID', + PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='学生资产账户'; drop table if exists student_account_trading_record_sheet; diff --git a/web/src/main/java/com/ibeetl/jlw/entity/StudentAccountAssetAllocation.java b/web/src/main/java/com/ibeetl/jlw/entity/StudentAccountAssetAllocation.java index b9bf56be..5eaaebe9 100644 --- a/web/src/main/java/com/ibeetl/jlw/entity/StudentAccountAssetAllocation.java +++ b/web/src/main/java/com/ibeetl/jlw/entity/StudentAccountAssetAllocation.java @@ -1,14 +1,14 @@ package com.ibeetl.jlw.entity; -import javax.validation.constraints.NotNull; - +import com.ibeetl.admin.core.annotation.Dict; import com.ibeetl.admin.core.entity.BaseEntity; -import org.beetl.sql.annotation.entity.*; - import com.ibeetl.admin.core.util.ValidateConfig; +import lombok.Data; +import org.beetl.sql.annotation.builder.UpdateTime; +import org.beetl.sql.annotation.entity.AssignID; +import org.beetl.sql.annotation.entity.Version; -import com.ibeetl.admin.core.annotation.Dict; - +import javax.validation.constraints.NotNull; import java.math.BigDecimal; import java.util.Date; @@ -16,6 +16,7 @@ import java.util.Date; * 学生资产账户 * gen by Spring Boot2 Admin 2023-03-05 */ +@Data public class StudentAccountAssetAllocation extends BaseEntity{ //主键ID @@ -24,502 +25,122 @@ public class StudentAccountAssetAllocation extends BaseEntity{ @AssignID(value = "maskAutoID",param = "com.ibeetl.jlw.entity.StudentAccountAssetAllocation") private Long id ; - + //学生ID @Dict(type="student.student_name.student_status=1") private Long studentId ; - + //应用ID @Dict(type="resources_application.application_name.1=1") private Long applicationId ; - + //院校ID @Dict(type="universities_colleges.universities_colleges_name.universities_colleges_status=1") private Long universitiesCollegesId ; - + //账户名称 - private Long name ; - + private String name ; + //账户开通状态 1:未开通 2:已开通 private Integer state ; - + //期初资金 - private Long initialCapital ; - + private BigDecimal initialCapital ; + //可用资金 - private Long availableFunds ; - + private BigDecimal availableFunds ; + //转入账户 private String intoAccount ; - + //转账金额 - private Long transferAmount ; - + private BigDecimal transferAmount ; + //转入金额 - private Long transferinAmount ; - + private BigDecimal transferinAmount ; + //转出金额 - private Long transferOutAmount ; - + private BigDecimal transferOutAmount ; + //期初投资资金 - private Long initialInvestmentCapital ; - + private BigDecimal initialInvestmentCapital ; + //借入资金 - private Long borrowedFunds ; - + private BigDecimal borrowedFunds ; + //投资资金 - private Long investmentFunds ; - + private BigDecimal investmentFunds ; + //投资市值 - private Long investmentValue ; - + private BigDecimal investmentValue ; + //投资收益 - private Long investmentIncome ; - + private BigDecimal investmentIncome ; + //子账户总资产 - private Long totalAssetsOfSubAccounts ; - + private BigDecimal totalAssetsOfSubAccounts ; + //总资产投资收益率 - private Long assetInvestment ; - + private BigDecimal assetInvestment ; + //净资产收益率 - private Long returnOnEquity ; - + private BigDecimal returnOnEquity ; + //是否给予初始值 1:未给 2:已给 private Integer isUpdate ; - + //冻结金额 - private Long amountFrozen ; - - //乐观锁 + private BigDecimal amountFrozen ; + //乐观锁 + @Version private Long updateVersion ; - + //修改人 - private Long updateBy ; - + private String updateBy ; + //修改时间 + @UpdateTime private Date updateTime ; - + //创建时间 private Date createTime ; - + //是否删除 1:正常,2:删除 @Dict(type="global_status") private Integer isDel ; - + //用户ID private Long userId ; - + //机构ID private Long orgId ; - - public StudentAccountAssetAllocation(){ - } - - /**主键ID - *@return - */ - public Long getId(){ - return id; - } - /**主键ID - *@param id - */ - public void setId(Long id){ - this.id = id; - } - - /**学生ID - *@return - */ - public Long getStudentId(){ - return studentId; - } - /**学生ID - *@param studentId - */ - public void setStudentId(Long studentId){ - this.studentId = studentId; - } - - /**应用ID - *@return - */ - public Long getApplicationId(){ - return applicationId; - } - /**应用ID - *@param applicationId - */ - public void setApplicationId(Long applicationId){ - this.applicationId = applicationId; - } - - /**院校ID - *@return - */ - public Long getUniversitiesCollegesId(){ - return universitiesCollegesId; - } - /**院校ID - *@param universitiesCollegesId - */ - public void setUniversitiesCollegesId(Long universitiesCollegesId){ - this.universitiesCollegesId = universitiesCollegesId; - } - - /**账户名称 - *@return - */ - public Long getName(){ - return name; - } - /**账户名称 - *@param name - */ - public void setName(Long name){ - this.name = name; - } - - /**账户开通状态 1:未开通 2:已开通 - *@return - */ - public Integer getState(){ - return state; - } - /**账户开通状态 1:未开通 2:已开通 - *@param state - */ - public void setState(Integer state){ - this.state = state; - } - - /**期初资金 - *@return - */ - public Long getInitialCapital(){ - return initialCapital; - } - /**期初资金 - *@param initialCapital - */ - public void setInitialCapital(Long initialCapital){ - this.initialCapital = initialCapital; - } - - /**可用资金 - *@return - */ - public Long getAvailableFunds(){ - return availableFunds; - } - /**可用资金 - *@param availableFunds - */ - public void setAvailableFunds(Long availableFunds){ - this.availableFunds = availableFunds; - } - - /**转入账户 - *@return - */ - public String getIntoAccount(){ - return intoAccount; - } - /**转入账户 - *@param intoAccount - */ - public void setIntoAccount(String intoAccount){ - this.intoAccount = intoAccount; - } - - /**转账金额 - *@return - */ - public Long getTransferAmount(){ - return transferAmount; - } - /**转账金额 - *@param transferAmount - */ - public void setTransferAmount(Long transferAmount){ - this.transferAmount = transferAmount; - } - - /**转入金额 - *@return - */ - public Long getTransferinAmount(){ - return transferinAmount; - } - /**转入金额 - *@param transferinAmount - */ - public void setTransferinAmount(Long transferinAmount){ - this.transferinAmount = transferinAmount; - } - - /**转出金额 - *@return - */ - public Long getTransferOutAmount(){ - return transferOutAmount; - } - /**转出金额 - *@param transferOutAmount - */ - public void setTransferOutAmount(Long transferOutAmount){ - this.transferOutAmount = transferOutAmount; - } - - /**期初投资资金 - *@return - */ - public Long getInitialInvestmentCapital(){ - return initialInvestmentCapital; - } - /**期初投资资金 - *@param initialInvestmentCapital - */ - public void setInitialInvestmentCapital(Long initialInvestmentCapital){ - this.initialInvestmentCapital = initialInvestmentCapital; - } - - /**借入资金 - *@return - */ - public Long getBorrowedFunds(){ - return borrowedFunds; - } - /**借入资金 - *@param borrowedFunds - */ - public void setBorrowedFunds(Long borrowedFunds){ - this.borrowedFunds = borrowedFunds; - } - - /**投资资金 - *@return - */ - public Long getInvestmentFunds(){ - return investmentFunds; - } - /**投资资金 - *@param investmentFunds - */ - public void setInvestmentFunds(Long investmentFunds){ - this.investmentFunds = investmentFunds; - } - - /**投资市值 - *@return - */ - public Long getInvestmentValue(){ - return investmentValue; - } - /**投资市值 - *@param investmentValue - */ - public void setInvestmentValue(Long investmentValue){ - this.investmentValue = investmentValue; - } - - /**投资收益 - *@return - */ - public Long getInvestmentIncome(){ - return investmentIncome; - } - /**投资收益 - *@param investmentIncome - */ - public void setInvestmentIncome(Long investmentIncome){ - this.investmentIncome = investmentIncome; - } - - /**子账户总资产 - *@return - */ - public Long getTotalAssetsOfSubAccounts(){ - return totalAssetsOfSubAccounts; - } - /**子账户总资产 - *@param totalAssetsOfSubAccounts - */ - public void setTotalAssetsOfSubAccounts(Long totalAssetsOfSubAccounts){ - this.totalAssetsOfSubAccounts = totalAssetsOfSubAccounts; - } - - /**总资产投资收益率 - *@return - */ - public Long getAssetInvestment(){ - return assetInvestment; - } - /**总资产投资收益率 - *@param assetInvestment - */ - public void setAssetInvestment(Long assetInvestment){ - this.assetInvestment = assetInvestment; - } - - /**净资产收益率 - *@return - */ - public Long getReturnOnEquity(){ - return returnOnEquity; - } - /**净资产收益率 - *@param returnOnEquity - */ - public void setReturnOnEquity(Long returnOnEquity){ - this.returnOnEquity = returnOnEquity; - } - - /**是否给予初始值 1:未给 2:已给 - *@return - */ - public Integer getIsUpdate(){ - return isUpdate; - } - /**是否给予初始值 1:未给 2:已给 - *@param isUpdate - */ - public void setIsUpdate(Integer isUpdate){ - this.isUpdate = isUpdate; - } - - /**冻结金额 - *@return - */ - public Long getAmountFrozen(){ - return amountFrozen; - } - /**冻结金额 - *@param amountFrozen - */ - public void setAmountFrozen(Long amountFrozen){ - this.amountFrozen = amountFrozen; - } - - /**乐观锁 - *@return - */ - public Long getUpdateVersion(){ - return updateVersion; - } - /**乐观锁 - *@param updateVersion - */ - public void setUpdateVersion(Long updateVersion){ - this.updateVersion = updateVersion; - } - - /**修改人 - *@return - */ - public Long getUpdateBy(){ - return updateBy; - } - /**修改人 - *@param updateBy - */ - public void setUpdateBy(Long updateBy){ - this.updateBy = updateBy; - } - - /**修改时间 - *@return - */ - public Date getUpdateTime(){ - return updateTime; - } - /**修改时间 - *@param updateTime - */ - public void setUpdateTime(Date updateTime){ - this.updateTime = updateTime; - } - - /**创建时间 - *@return - */ - public Date getCreateTime(){ - return createTime; - } - /**创建时间 - *@param createTime - */ - public void setCreateTime(Date createTime){ - this.createTime = createTime; - } - - /**是否删除 1:正常,2:删除 - *@return - */ - public Integer getIsDel(){ - return isDel; - } - /**是否删除 1:正常,2:删除 - *@param isDel - */ - public void setIsDel(Integer isDel){ - this.isDel = isDel; - } - - /**用户ID - *@return - */ - public Long getUserId(){ - return userId; - } - /**用户ID - *@param userId - */ - public void setUserId(Long userId){ - this.userId = userId; - } - - /**机构ID - *@return - */ - public Long getOrgId(){ - return orgId; - } - /**机构ID - *@param orgId - */ - public void setOrgId(Long orgId){ - this.orgId = orgId; - } - } diff --git a/web/src/main/java/com/ibeetl/jlw/service/StudentAccountAssetAllocationService.java b/web/src/main/java/com/ibeetl/jlw/service/StudentAccountAssetAllocationService.java index c706686f..66eb7fb0 100644 --- a/web/src/main/java/com/ibeetl/jlw/service/StudentAccountAssetAllocationService.java +++ b/web/src/main/java/com/ibeetl/jlw/service/StudentAccountAssetAllocationService.java @@ -159,6 +159,15 @@ public class StudentAccountAssetAllocationService extends CoreBaseService + * 通过token、updateVersion来更新属性 + * + * @param applicationToken + * @param param + * @Author: 87966 + * @Date: 2023/3/6 16:31 + */ public void updateByApplicationToken(@NotBlank(message = "applicationToken 传递的token不能为空!") String applicationToken, StudentAccountAssetAllocationQuery param) { // 获取资金账户信息 @@ -166,6 +175,8 @@ public class StudentAccountAssetAllocationService extends CoreBaseService * 通过token获取资金账户 * * @param applicationToken token - * @param param 一些条件 - * @return + * @param param 一些参数 + * @return {@link List< StudentAccountAssetAllocation>} + * @Author: 87966 + * @Date: 2023/3/6 16:32 */ public List getByApplicationToken(@NotBlank(message = "applicationToken 传递的token不能为空!") String applicationToken, StudentAccountAssetAllocationQuery param) { diff --git a/web/src/main/java/com/ibeetl/jlw/web/query/StudentAccountAssetAllocationQuery.java b/web/src/main/java/com/ibeetl/jlw/web/query/StudentAccountAssetAllocationQuery.java index 7ab9f759..4b4534cb 100644 --- a/web/src/main/java/com/ibeetl/jlw/web/query/StudentAccountAssetAllocationQuery.java +++ b/web/src/main/java/com/ibeetl/jlw/web/query/StudentAccountAssetAllocationQuery.java @@ -1,12 +1,10 @@ package com.ibeetl.jlw.web.query; import cn.jlw.validate.ValidateConfig; -import com.ibeetl.jlw.entity.StudentAccountAssetAllocation; -import org.apache.commons.lang3.StringUtils; import com.ibeetl.admin.core.annotation.Query; -import com.ibeetl.admin.core.util.Tool; -import com.ibeetl.admin.core.util.enums.CoreDictType; import com.ibeetl.admin.core.web.query.PageParam; +import com.ibeetl.jlw.entity.StudentAccountAssetAllocation; +import lombok.Data; import javax.validation.constraints.NotNull; import java.math.BigDecimal; @@ -15,6 +13,7 @@ import java.util.Date; /** *资产账户管理查询 */ +@Data public class StudentAccountAssetAllocationQuery extends PageParam { @NotNull(message = "ID不能为空", groups =ValidateConfig.UPDATE.class) @Query(name = "主键ID", display = false) @@ -26,45 +25,45 @@ public class StudentAccountAssetAllocationQuery extends PageParam { @Query(name = "院校ID", display = true,type=Query.TYPE_DICT,dict="universities_colleges.universities_colleges_name.universities_colleges_status=1") private Long universitiesCollegesId; @Query(name = "账户名称", display = false) - private Long name; + private String name; @Query(name = "账户开通状态 1:未开通 2:已开通", display = true) private Integer state; @Query(name = "期初资金", display = false) - private Long initialCapital; + private BigDecimal initialCapital; @Query(name = "可用资金", display = false) - private Long availableFunds; + private BigDecimal availableFunds; @Query(name = "转入账户", display = false) private String intoAccount; @Query(name = "转账金额", display = false) - private Long transferAmount; + private BigDecimal transferAmount; @Query(name = "转入金额", display = false) - private Long transferinAmount; + private BigDecimal transferinAmount; @Query(name = "转出金额", display = false) - private Long transferOutAmount; + private BigDecimal transferOutAmount; @Query(name = "期初投资资金", display = false) - private Long initialInvestmentCapital; + private BigDecimal initialInvestmentCapital; @Query(name = "借入资金", display = false) - private Long borrowedFunds; + private BigDecimal borrowedFunds; @Query(name = "投资资金", display = false) - private Long investmentFunds; + private BigDecimal investmentFunds; @Query(name = "投资市值", display = false) - private Long investmentValue; + private BigDecimal investmentValue; @Query(name = "投资收益", display = false) - private Long investmentIncome; + private BigDecimal investmentIncome; @Query(name = "子账户总资产", display = false) - private Long totalAssetsOfSubAccounts; + private BigDecimal totalAssetsOfSubAccounts; @Query(name = "总资产投资收益率", display = false) - private Long assetInvestment; + private BigDecimal assetInvestment; @Query(name = "净资产收益率", display = false) - private Long returnOnEquity; + private BigDecimal returnOnEquity; @Query(name = "是否给予初始值 1:未给 2:已给", display = false) private Integer isUpdate; @Query(name = "冻结金额", display = false) - private Long amountFrozen; + private BigDecimal amountFrozen; @Query(name = "乐观锁", display = false) private Long updateVersion; @Query(name = "修改人", display = false) - private Long updateBy; + private String updateBy; @Query(name = "修改时间", display = false) private Date updateTime; @Query(name = "创建时间", display = false) @@ -86,181 +85,6 @@ public class StudentAccountAssetAllocationQuery extends PageParam { private String _given;//指定更新的特定字段,多个逗号隔开 - public Long getId(){ - return id; - } - public void setId(Long id ){ - this.id = id; - } - public Long getStudentId(){ - return studentId; - } - public void setStudentId(Long studentId ){ - this.studentId = studentId; - } - public Long getApplicationId(){ - return applicationId; - } - public void setApplicationId(Long applicationId ){ - this.applicationId = applicationId; - } - public Long getUniversitiesCollegesId(){ - return universitiesCollegesId; - } - public void setUniversitiesCollegesId(Long universitiesCollegesId ){ - this.universitiesCollegesId = universitiesCollegesId; - } - public Long getName(){ - return name; - } - public void setName(Long name ){ - this.name = name; - } - public Integer getState(){ - return state; - } - public void setState(Integer state ){ - this.state = state; - } - public Long getInitialCapital(){ - return initialCapital; - } - public void setInitialCapital(Long initialCapital ){ - this.initialCapital = initialCapital; - } - public Long getAvailableFunds(){ - return availableFunds; - } - public void setAvailableFunds(Long availableFunds ){ - this.availableFunds = availableFunds; - } - public String getIntoAccount(){ - return intoAccount; - } - public void setIntoAccount(String intoAccount ){ - this.intoAccount = intoAccount; - } - public Long getTransferAmount(){ - return transferAmount; - } - public void setTransferAmount(Long transferAmount ){ - this.transferAmount = transferAmount; - } - public Long getTransferinAmount(){ - return transferinAmount; - } - public void setTransferinAmount(Long transferinAmount ){ - this.transferinAmount = transferinAmount; - } - public Long getTransferOutAmount(){ - return transferOutAmount; - } - public void setTransferOutAmount(Long transferOutAmount ){ - this.transferOutAmount = transferOutAmount; - } - public Long getInitialInvestmentCapital(){ - return initialInvestmentCapital; - } - public void setInitialInvestmentCapital(Long initialInvestmentCapital ){ - this.initialInvestmentCapital = initialInvestmentCapital; - } - public Long getBorrowedFunds(){ - return borrowedFunds; - } - public void setBorrowedFunds(Long borrowedFunds ){ - this.borrowedFunds = borrowedFunds; - } - public Long getInvestmentFunds(){ - return investmentFunds; - } - public void setInvestmentFunds(Long investmentFunds ){ - this.investmentFunds = investmentFunds; - } - public Long getInvestmentValue(){ - return investmentValue; - } - public void setInvestmentValue(Long investmentValue ){ - this.investmentValue = investmentValue; - } - public Long getInvestmentIncome(){ - return investmentIncome; - } - public void setInvestmentIncome(Long investmentIncome ){ - this.investmentIncome = investmentIncome; - } - public Long getTotalAssetsOfSubAccounts(){ - return totalAssetsOfSubAccounts; - } - public void setTotalAssetsOfSubAccounts(Long totalAssetsOfSubAccounts ){ - this.totalAssetsOfSubAccounts = totalAssetsOfSubAccounts; - } - public Long getAssetInvestment(){ - return assetInvestment; - } - public void setAssetInvestment(Long assetInvestment ){ - this.assetInvestment = assetInvestment; - } - public Long getReturnOnEquity(){ - return returnOnEquity; - } - public void setReturnOnEquity(Long returnOnEquity ){ - this.returnOnEquity = returnOnEquity; - } - public Integer getIsUpdate(){ - return isUpdate; - } - public void setIsUpdate(Integer isUpdate ){ - this.isUpdate = isUpdate; - } - public Long getAmountFrozen(){ - return amountFrozen; - } - public void setAmountFrozen(Long amountFrozen ){ - this.amountFrozen = amountFrozen; - } - public Long getUpdateVersion(){ - return updateVersion; - } - public void setUpdateVersion(Long updateVersion ){ - this.updateVersion = updateVersion; - } - public Long getUpdateBy(){ - return updateBy; - } - public void setUpdateBy(Long updateBy ){ - this.updateBy = updateBy; - } - public Date getUpdateTime(){ - return updateTime; - } - public void setUpdateTime(Date updateTime ){ - this.updateTime = updateTime; - } - public Date getCreateTime(){ - return createTime; - } - public void setCreateTime(Date createTime ){ - this.createTime = createTime; - } - public Integer getIsDel(){ - return isDel; - } - public void setIsDel(Integer isDel ){ - this.isDel = isDel; - } - public Long getUserId(){ - return userId; - } - public void setUserId(Long userId ){ - this.userId = userId; - } - public Long getOrgId(){ - return orgId; - } - public void setOrgId(Long orgId ){ - this.orgId = orgId; - } - public StudentAccountAssetAllocation pojo(){ StudentAccountAssetAllocation pojo = new StudentAccountAssetAllocation(); pojo.setId(this.getId()); @@ -294,47 +118,4 @@ public class StudentAccountAssetAllocationQuery extends PageParam { pojo.setOrgId(this.getOrgId()); return pojo; } - - public String getStudentIdPlural(){ - return studentIdPlural; - } - public void setStudentIdPlural(String studentIdPlural){ - this.studentIdPlural = studentIdPlural; - } - public String getApplicationIdPlural(){ - return applicationIdPlural; - } - public void setApplicationIdPlural(String applicationIdPlural){ - this.applicationIdPlural = applicationIdPlural; - } - public String getUniversitiesCollegesIdPlural(){ - return universitiesCollegesIdPlural; - } - public void setUniversitiesCollegesIdPlural(String universitiesCollegesIdPlural){ - this.universitiesCollegesIdPlural = universitiesCollegesIdPlural; - } - public String getUserIdPlural(){ - return userIdPlural; - } - public void setUserIdPlural(String userIdPlural){ - this.userIdPlural = userIdPlural; - } - public String getOrgIdPlural(){ - return orgIdPlural; - } - public void setOrgIdPlural(String orgIdPlural){ - this.orgIdPlural = orgIdPlural; - } - public String getStudentAccountAssetAllocationJsonStr(){ - return studentAccountAssetAllocationJsonStr; - } - public void setStudentAccountAssetAllocationJsonStr(String studentAccountAssetAllocationJsonStr ){ - this.studentAccountAssetAllocationJsonStr = studentAccountAssetAllocationJsonStr; - } - public String get_given() { - return _given; - } - public void set_given(String _given) { - this._given = _given; - } }