|
@@ -3,6 +3,9 @@ package com.simuwang.base.pojo.dos;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.simuwang.base.common.util.DateUtils;
|
|
|
+import com.simuwang.base.pojo.vo.FundInfoVO;
|
|
|
+import com.simuwang.base.pojo.vo.FundInformationVO;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.util.Date;
|
|
@@ -141,4 +144,43 @@ public class FundInfoDO {
|
|
|
*/
|
|
|
@TableField(value = "updatetime")
|
|
|
private Date updateTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 投资顾问名称
|
|
|
+ */
|
|
|
+ private String advisorCompanyName;
|
|
|
+ /**
|
|
|
+ * 发行人名称
|
|
|
+ */
|
|
|
+ private String issuerCompanyName;
|
|
|
+
|
|
|
+ public FundInfoVO toVO() {
|
|
|
+ FundInfoVO vo = new FundInfoVO();
|
|
|
+ vo.setId(this.id);
|
|
|
+ vo.setFundId(this.fundId);
|
|
|
+ vo.setFundShortName(this.fundShortName);
|
|
|
+ vo.setInceptionDate(this.inceptionDate);
|
|
|
+ vo.setAdvisorId(this.advisorId);
|
|
|
+ vo.setIssuerId(this.issuerId);
|
|
|
+ vo.setIssuerCompanyName(this.issuerCompanyName);
|
|
|
+ vo.setBaseCurrency(this.baseCurrency);
|
|
|
+ vo.setFundName(this.fundName);
|
|
|
+ vo.setAdvisorCompanyName(this.advisorCompanyName);
|
|
|
+ vo.setFundStatus(this.fundStatus);
|
|
|
+ vo.setFundType(this.fundType);
|
|
|
+ vo.setRegisterNumber(this.registerNumber);
|
|
|
+ vo.setCreateTime(DateUtils.format(this.createTime,DateUtils.YYYY_MM_DD_HH_MM_SS));
|
|
|
+ vo.setCustodianId(this.custodianId);
|
|
|
+ vo.setAmacSourceType(this.amacSourceType);
|
|
|
+ vo.setPFundId(this.pFundId);
|
|
|
+ vo.setInvestmentType(this.investmentType);
|
|
|
+ vo.setIsAmacShow(this.isAmacShow);
|
|
|
+ vo.setPerformanceStartDate(this.performanceStartDate);
|
|
|
+ vo.setLiquidateDate(this.liquidateDate);
|
|
|
+ vo.setManagerType(this.managerType);
|
|
|
+ vo.setRegisterDate(this.registerDate);
|
|
|
+ vo.setIsShareclass(this.isShareclass);
|
|
|
+ vo.setTrustId(this.trustId);
|
|
|
+ return vo;
|
|
|
+ }
|
|
|
}
|