|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|