Commit f9c415d6 authored by 张亚辉's avatar 张亚辉

init

parent f0c40c5c
...@@ -7,8 +7,8 @@ import lombok.Data; ...@@ -7,8 +7,8 @@ import lombok.Data;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
/** /**
* 基金与基金经理关联 * 基金与基金经理关联
*/ */
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor
...@@ -17,28 +17,28 @@ public class FundManagerMapping1 { ...@@ -17,28 +17,28 @@ public class FundManagerMapping1 {
private String id; private String id;
/** /**
* 基金id * 基金id
*/ */
private String fundId; private String fundId;
/** /**
* 基金经理id,即人员id * 基金经理id,即人员id
*/ */
private String fundManagerId; private String fundManagerId;
/** /**
* 基金管理开始时间 * 基金管理开始时间
*/ */
private Date managementStartDate; private Date managementStartDate;
/** /**
* 基金管理结束时间 * 基金管理结束时间
*/ */
private Date managementEndDate; private Date managementEndDate;
/** /**
* 前台是否可见,1-可见 0-不可见 * 前台是否可见,1-可见 0-不可见
*/ */
private Integer isvisible; private Integer isvisible;
private String createBy; private String createBy;
......
...@@ -8,8 +8,8 @@ import lombok.Data; ...@@ -8,8 +8,8 @@ import lombok.Data;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
/** /**
* 指数 * 指数
*/ */
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor
...@@ -20,13 +20,13 @@ public class FundMarketIndexes { ...@@ -20,13 +20,13 @@ public class FundMarketIndexes {
private String indexId; private String indexId;
/** /**
* 指数代码 * 指数代码
*/ */
private String indexCode; private String indexCode;
/** /**
* 更新日期 * 更新日期
*/ */
private Date priceDate; private Date priceDate;
private BigDecimal preclose; private BigDecimal preclose;
......
package com.tanpu.fund.entity.generator; package com.tanpu.fund.entity.generator;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
import lombok.Data; import lombok.Data;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
/**
* 基金历史业绩
*/
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor
public class FundPerformance { public class FundPerformance {
private Integer id; private String id;
private Date priceDate;
/**
* 基金id
*/
private String fundId; private String fundId;
private String endDate; /**
* 截至日期
private Double cumulativeNav; */
private Date endDate;
private Double ret1m;
private Double ret1mBm1;
private Double ret3m;
private Double ret3mBm1;
private Double ret6m;
private Double ret6mBm1;
private Double ret1y;
private Double ret1yBm1;
private Double ret2y;
private Double ret2yBm1;
private Double ret2yA;
private Double ret2yBm1;
private Double ret3y;
private Double ret3yBm1;
private Double ret3yA;
private Double ret3yBm1;
private Double ret4y;
private Double ret4yBm1; /**
* 最近累计净值日期
private Double ret4yA; */
private Date priceDate;
private Double ret4yBm1;
private Double ret5y;
private Double ret5yBm1;
private Double ret5yA;
private Double ret5yBm1;
private Double ret10y;
private Double ret10yBm1;
private Double ret10yA;
private Double ret10yBm11;
private Double retYtd;
private Double retYtdBm1;
private Double retIncep;
private Double retIncepB;
private Double retIncepA;
private Double retIncepB1;
private Long isvalid;
private Date updatetime;
private Date createtime; /**
* 最近累计净值
*/
private BigDecimal cumulativeNav;
/**
* 最近一天收益率
*/
private BigDecimal ret1day;
/**
* 最近一天基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret1dayBm1;
/**
* 最近一个周收益率
*/
private BigDecimal ret1w;
/**
* 最近一个周基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret1wBm1;
/**
* 最近一个月收益率
*/
private BigDecimal ret1m;
/**
* 最近一个月累计收益率
*/
private BigDecimal retCum1m;
/**
* 最近一个月基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret1mBm1;
/**
* 最近一个月累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum1mBm1;
/**
* 最近三个月收益率
*/
private BigDecimal ret3m;
/**
* 最近三个月基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret3mBm1;
/**
* 最近三个月累计收益率
*/
private BigDecimal retCum3m;
/**
* 最近三个月累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum3mBm1;
/**
* 最近半年收益率
*/
private BigDecimal ret6m;
/**
* 最近半年累计收益率
*/
private BigDecimal retCum6m;
/**
* 最近半年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret6mBm1;
/**
* 最近半年累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum6mBm1;
/**
* 最近一年收益率
*/
private BigDecimal ret1y;
/**
* 最近一年累计收益率
*/
private BigDecimal retCum1y;
/**
* 最近一年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret1yBm1;
/**
* 最近一年累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum1yBm1;
/**
* 最近两年收益率
*/
private BigDecimal ret2y;
/**
* 最近两年累计收益率
*/
private BigDecimal retCum2y;
/**
* 最近两年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret2yBm1;
/**
* 最近两年累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum2yBm1;
/**
* 最近两年收益率(年化)
*/
private BigDecimal ret2yA;
/**
* 最近两年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret2yBm1A;
/**
* 最近三年收益率
*/
private BigDecimal ret3y;
/**
* 最近三年累计收益率
*/
private BigDecimal retCum3y;
/**
* 最近三年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret3yBm1;
/**
* 最近三年累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum3yBm1;
/**
* 最近三年收益率(年化)
*/
private BigDecimal ret3yA;
/**
* 最近三年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret3yBm1A;
/**
* 最近四年收益率
*/
private BigDecimal ret4y;
/**
* 最近四年累计收益率
*/
private BigDecimal retCum4y;
/**
* 最近四年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret4yBm1;
/**
* 最近四年累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum4yBm1;
/**
* 最近四年收益率(年化)
*/
private BigDecimal ret4yA;
/**
* 最近四年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret4yBm1A;
/**
* 最近五年收益率
*/
private BigDecimal ret5y;
/**
* 最近五年累计收益率
*/
private BigDecimal retCum5y;
/**
* 最近五年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret5yBm1;
/**
* 最近五年累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCum5yBm1;
/**
* 最近五年收益率(年化)
*/
private BigDecimal ret5yA;
/**
* 最近五年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal ret5yBm1A;
/**
* 今年以来收益率
*/
private BigDecimal retYtd;
/**
* 今年以来累计收益率
*/
private BigDecimal retCumYtd;
/**
* 今年以来基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retYtdBm1;
/**
* 今年以来累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCumYtdBm1;
/**
* 成立以来收益率
*/
private BigDecimal retIncep;
/**
* 成立以来累计收益率
*/
private BigDecimal retCumIncep;
/**
* 成立以来基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retIncepBm1;
/**
* 成立以来累计基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retCumIncepBm1;
/**
* 成立以来收益率(年化)
*/
private BigDecimal retIncepA;
/**
* 成立以来基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/
private BigDecimal retIncepBm1A;
private Date updateTime;
private Date createTime;
private Integer deleteTag;
} }
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -8,8 +8,8 @@ import lombok.Data; ...@@ -8,8 +8,8 @@ import lombok.Data;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
/** /**
* 基金历史业绩 * 基金历史业绩
*/ */
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor
...@@ -18,323 +18,323 @@ public class IfaImportedFundCount { ...@@ -18,323 +18,323 @@ public class IfaImportedFundCount {
private String id; private String id;
/** /**
* 基金id * 基金id
*/ */
private String fundId; private String fundId;
/** /**
* 基金策略分类 * 基金策略分类
*/ */
private Integer strategy; private Integer strategy;
/** /**
* 融智子策略分类:1010-主观多头 1020-股票多空 1030-量化多头 2010-宏观策略 3010-主观趋势 3020-主观套利 3030-量化趋势 3040-量化套利 3050-管理期货复合 4010-并购重组 4020-定向增发 4030-大宗交易 4040-事件驱动复合 5010-股票市场中性 5020-套利 5030-相对价值复合 6010-纯债策略 6020-强债策略 6030-固收复合 7010-MOM 7020-FOF 8010-主观多策略 8020-量化多策略 -1-其他策略' * 融智子策略分类:1010-主观多头 1020-股票多空 1030-量化多头 2010-宏观策略 3010-主观趋势 3020-主观套利 3030-量化趋势 3040-量化套利 3050-管理期货复合 4010-并购重组 4020-定向增发 4030-大宗交易 4040-事件驱动复合 5010-股票市场中性 5020-套利 5030-相对价值复合 6010-纯债策略 6020-强债策略 6030-固收复合 7010-MOM 7020-FOF 8010-主观多策略 8020-量化多策略 -1-其他策略'
*/ */
private Integer substrategy; private Integer substrategy;
/** /**
* 是否可预约 0:不可预约 1:可预约 * 是否可预约 0:不可预约 1:可预约
*/ */
private Integer type; private Integer type;
/** /**
* 截至日期 * 截至日期
*/ */
private Date endDate; private Date endDate;
/** /**
* 最近累计净值日期 * 最近累计净值日期
*/ */
private Date priceDate; private Date priceDate;
/** /**
* 单位净值 * 单位净值
*/ */
private BigDecimal netNav; private BigDecimal netNav;
/** /**
* 最近累计净值 * 最近累计净值
*/ */
private BigDecimal cumulativeNav; private BigDecimal cumulativeNav;
/** /**
* 最近一天收益率 * 最近一天收益率
*/ */
private BigDecimal ret1day; private BigDecimal ret1day;
/** /**
* 最近一天基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近一天基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret1dayBm1; private BigDecimal ret1dayBm1;
/** /**
* 最近一个周收益率 * 最近一个周收益率
*/ */
private BigDecimal ret1w; private BigDecimal ret1w;
/** /**
* 最近一个周基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近一个周基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret1wBm1; private BigDecimal ret1wBm1;
/** /**
* 最近一个月收益率 * 最近一个月收益率
*/ */
private BigDecimal ret1m; private BigDecimal ret1m;
/** /**
* 最近一个月基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近一个月基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret1mBm1; private BigDecimal ret1mBm1;
/** /**
* 最近三个月收益率 * 最近三个月收益率
*/ */
private BigDecimal ret3m; private BigDecimal ret3m;
/** /**
* 最近三个月基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近三个月基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret3mBm1; private BigDecimal ret3mBm1;
/** /**
* 最近半年收益率 * 最近半年收益率
*/ */
private BigDecimal ret6m; private BigDecimal ret6m;
/** /**
* 最近半年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近半年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret6mBm1; private BigDecimal ret6mBm1;
/** /**
* 最近一年收益率 * 最近一年收益率
*/ */
private BigDecimal ret1y; private BigDecimal ret1y;
/** /**
* 最近一年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近一年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret1yBm1; private BigDecimal ret1yBm1;
/** /**
* 最近两年收益率 * 最近两年收益率
*/ */
private BigDecimal ret2y; private BigDecimal ret2y;
/** /**
* 最近两年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近两年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret2yBm1; private BigDecimal ret2yBm1;
/** /**
* 最近两年收益率(年化) * 最近两年收益率(年化)
*/ */
private BigDecimal ret2yA; private BigDecimal ret2yA;
/** /**
* 最近两年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近两年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret2yBm1A; private BigDecimal ret2yBm1A;
/** /**
* 最近三年收益率 * 最近三年收益率
*/ */
private BigDecimal ret3y; private BigDecimal ret3y;
/** /**
* 最近三年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近三年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret3yBm1; private BigDecimal ret3yBm1;
/** /**
* 最近三年收益率(年化) * 最近三年收益率(年化)
*/ */
private BigDecimal ret3yA; private BigDecimal ret3yA;
/** /**
* 最近三年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近三年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret3yBm1A; private BigDecimal ret3yBm1A;
/** /**
* 最近四年收益率 * 最近四年收益率
*/ */
private BigDecimal ret4y; private BigDecimal ret4y;
/** /**
* 最近四年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近四年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret4yBm1; private BigDecimal ret4yBm1;
/** /**
* 最近四年收益率(年化) * 最近四年收益率(年化)
*/ */
private BigDecimal ret4yA; private BigDecimal ret4yA;
/** /**
* 最近四年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近四年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret4yBm1A; private BigDecimal ret4yBm1A;
/** /**
* 最近五年收益率 * 最近五年收益率
*/ */
private BigDecimal ret5y; private BigDecimal ret5y;
/** /**
* 最近五年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近五年基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret5yBm1; private BigDecimal ret5yBm1;
/** /**
* 最近五年收益率(年化) * 最近五年收益率(年化)
*/ */
private BigDecimal ret5yA; private BigDecimal ret5yA;
/** /**
* 最近五年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数) * 最近五年基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal ret5yBm1A; private BigDecimal ret5yBm1A;
/** /**
* 今年以来收益率 * 今年以来收益率
*/ */
private BigDecimal retYtd; private BigDecimal retYtd;
/** /**
* 今年以来基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 今年以来基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal retYtdBm1; private BigDecimal retYtdBm1;
/** /**
* 成立以来收益率 * 成立以来收益率
*/ */
private BigDecimal retIncep; private BigDecimal retIncep;
/** /**
* 成立以来基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数) * 成立以来基准指数收益率,基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal retIncepBm1; private BigDecimal retIncepBm1;
/** /**
* 成立以来收益率(年化) * 成立以来收益率(年化)
*/ */
private BigDecimal retIncepA; private BigDecimal retIncepA;
/** /**
* 成立以来基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数) * 成立以来基准指数收益率(年化),基准指数bm1=沪深300(取决于基金设定的基准指数)
*/ */
private BigDecimal retIncepBm1A; private BigDecimal retIncepBm1A;
/** /**
* 最近一年的夏普比率 * 最近一年的夏普比率
*/ */
private BigDecimal sharperatio1y; private BigDecimal sharperatio1y;
/** /**
* 最近两年的夏普比率 * 最近两年的夏普比率
*/ */
private BigDecimal sharperatio2y; private BigDecimal sharperatio2y;
/** /**
* 最近三年的夏普比率 * 最近三年的夏普比率
*/ */
private BigDecimal sharperatio3y; private BigDecimal sharperatio3y;
/** /**
* 最近四年的夏普比率 * 最近四年的夏普比率
*/ */
private BigDecimal sharperatio4y; private BigDecimal sharperatio4y;
/** /**
* 最近五年的夏普比率 * 最近五年的夏普比率
*/ */
private BigDecimal sharperatio5y; private BigDecimal sharperatio5y;
/** /**
* 成立以来的夏普比率 * 成立以来的夏普比率
*/ */
private BigDecimal sharperatioIncep; private BigDecimal sharperatioIncep;
/** /**
* 最近一年的年化波动率 * 最近一年的年化波动率
*/ */
private BigDecimal stddev1y; private BigDecimal stddev1y;
/** /**
* 最近两年的年化波动率 * 最近两年的年化波动率
*/ */
private BigDecimal stddev2y; private BigDecimal stddev2y;
/** /**
* 最近三年的年化波动率 * 最近三年的年化波动率
*/ */
private BigDecimal stddev3y; private BigDecimal stddev3y;
/** /**
* 最近四年的年化波动率 * 最近四年的年化波动率
*/ */
private BigDecimal stddev4y; private BigDecimal stddev4y;
/** /**
* 最近五年的年化波动率 * 最近五年的年化波动率
*/ */
private BigDecimal stddev5y; private BigDecimal stddev5y;
/** /**
* 最近十年的年化波动率 * 最近十年的年化波动率
*/ */
private BigDecimal stddev10y; private BigDecimal stddev10y;
/** /**
* 成立以来的年化波动率 * 成立以来的年化波动率
*/ */
private BigDecimal stddevIncep; private BigDecimal stddevIncep;
/** /**
* 今年以来的年化波动率 * 今年以来的年化波动率
*/ */
private BigDecimal stddevYtd; private BigDecimal stddevYtd;
/** /**
* 最近一年的最大回撤 * 最近一年的最大回撤
*/ */
private BigDecimal maxdrawdown1y; private BigDecimal maxdrawdown1y;
/** /**
* 最近两年的最大回撤 * 最近两年的最大回撤
*/ */
private BigDecimal maxdrawdown2y; private BigDecimal maxdrawdown2y;
/** /**
* 最近四年的最大回撤 * 最近四年的最大回撤
*/ */
private BigDecimal maxdrawdown3y; private BigDecimal maxdrawdown3y;
/** /**
* 最近四年的最大回撤 * 最近四年的最大回撤
*/ */
private BigDecimal maxdrawdown4y; private BigDecimal maxdrawdown4y;
/** /**
* 最近五年的最大回撤 * 最近五年的最大回撤
*/ */
private BigDecimal maxdrawdown5y; private BigDecimal maxdrawdown5y;
/** /**
* 最近十年的最大回撤 * 最近十年的最大回撤
*/ */
private BigDecimal maxdrawdown10y; private BigDecimal maxdrawdown10y;
/** /**
* 成立以来的最大回撤 * 成立以来的最大回撤
*/ */
private BigDecimal maxdrawdownIncep; private BigDecimal maxdrawdownIncep;
/** /**
* 数据来源 1:tanpu,2:私募排排 3:指数 * 数据来源 1:tanpu,2:私募排排 3:指数
*/ */
private Integer dataSources; private Integer dataSources;
private Date updateTime; private Date updateTime;
...@@ -342,13 +342,13 @@ public class IfaImportedFundCount { ...@@ -342,13 +342,13 @@ public class IfaImportedFundCount {
private Date createTime; private Date createTime;
/** /**
* 0:待上架 1:已上架 2:已下架 * 0:待上架 1:已上架 2:已下架
*/ */
private Integer status; private Integer status;
/** /**
* 排序 * 排序
*/ */
private Integer sort; private Integer sort;
private Integer deleteTag; private Integer deleteTag;
......
...@@ -17,83 +17,83 @@ public class IfaImportedFundInfo { ...@@ -17,83 +17,83 @@ public class IfaImportedFundInfo {
private String fundName; private String fundName;
/** /**
* 基金公司 * 基金公司
*/ */
private String companyName; private String companyName;
/** /**
* 子策略 * 子策略
*/ */
private Integer substrategy; private Integer substrategy;
/** /**
* 投资策略 * 投资策略
*/ */
private Integer strategy; private Integer strategy;
/** /**
* 基金经理 * 基金经理
*/ */
private String manageName; private String manageName;
/** /**
* 风险等级 * 风险等级
*/ */
private String riskLevel; private String riskLevel;
/** /**
* 成立日期 * 成立日期
*/ */
private Date inceptionDate; private Date inceptionDate;
/** /**
* 备案编号 * 备案编号
*/ */
private String registerNumber; private String registerNumber;
/** /**
* 开放日 * 开放日
*/ */
private String openDay; private String openDay;
/** /**
* 认购起点(万) * 认购起点(万)
*/ */
private BigDecimal minInvestmentShare; private BigDecimal minInvestmentShare;
/** /**
* 追加起点(万) * 追加起点(万)
*/ */
private BigDecimal subsequentInvestmentShare; private BigDecimal subsequentInvestmentShare;
/** /**
* 认购费率 * 认购费率
*/ */
private BigDecimal subscriptionFee; private BigDecimal subscriptionFee;
/** /**
* 赎回费率 * 赎回费率
*/ */
private BigDecimal redemptionFee; private BigDecimal redemptionFee;
/** /**
* 管理费率 * 管理费率
*/ */
private BigDecimal managementFee; private BigDecimal managementFee;
/** /**
* 业绩报酬 * 业绩报酬
*/ */
private BigDecimal performanceFee; private BigDecimal performanceFee;
/** /**
* 业绩计提方式 * 业绩计提方式
*/ */
private String performanceCalculateMethod; private String performanceCalculateMethod;
/** /**
* ifa id * ifa id
*/ */
private String ifaId; private String ifaId;
private Date createTime; private Date createTime;
......
...@@ -15,23 +15,23 @@ public class IfaImportedFundNav { ...@@ -15,23 +15,23 @@ public class IfaImportedFundNav {
private Integer id; private Integer id;
/** /**
* 基金id * 基金id
*/ */
private String fundId; private String fundId;
/** /**
* 净值日期 * 净值日期
*/ */
private Date priceDate; private Date priceDate;
/** /**
* 单位净值 * 单位净值
*/ */
private BigDecimal nav; private BigDecimal nav;
/** /**
* 考虑分红再投资的单位累计净值 * 考虑分红再投资的单位累计净值
*/ */
private BigDecimal cumulativeNav; private BigDecimal cumulativeNav;
private Integer deleteTag; private Integer deleteTag;
......
...@@ -6,60 +6,60 @@ import lombok.Data; ...@@ -6,60 +6,60 @@ import lombok.Data;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
/** /**
* 公募基金经理基础信息 * 公募基金经理基础信息
*/ */
@Data @Data
@Builder @Builder
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor
public class PublicFundManager { public class PublicFundManager {
/** /**
* 基金代码 * 基金代码
*/ */
private String tsCode; private String tsCode;
/** /**
* 公告日期 * 公告日期
*/ */
private String annDate; private String annDate;
/** /**
* 基金经理姓名 * 基金经理姓名
*/ */
private String name; private String name;
/** /**
* 离任日期 * 离任日期
*/ */
private String endDate; private String endDate;
/** /**
* 性别 * 性别
*/ */
private String gender; private String gender;
/** /**
* 出生年份 * 出生年份
*/ */
private String birthYear; private String birthYear;
/** /**
* 学历 * 学历
*/ */
private String edu; private String edu;
/** /**
* 国籍 * 国籍
*/ */
private String nationality; private String nationality;
/** /**
* 任职日期 * 任职日期
*/ */
private String beginDate; private String beginDate;
/** /**
* 简历 * 简历
*/ */
private String resume; private String resume;
} }
\ No newline at end of file
...@@ -14,6 +14,7 @@ public interface CompanyInfoMapper { ...@@ -14,6 +14,7 @@ public interface CompanyInfoMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface CompanyInfoMapper { ...@@ -21,6 +22,7 @@ public interface CompanyInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface CompanyInfoMapper { ...@@ -34,6 +36,7 @@ public interface CompanyInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface CompanyInfoMapper { ...@@ -45,6 +48,7 @@ public interface CompanyInfoMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface CompanyInfoMapper { ...@@ -58,6 +62,7 @@ public interface CompanyInfoMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface CompanyInfoMapper { ...@@ -67,6 +72,7 @@ public interface CompanyInfoMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundCompanyInfoMapper { ...@@ -14,6 +14,7 @@ public interface FundCompanyInfoMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param companyId primaryKey * @param companyId primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundCompanyInfoMapper { ...@@ -21,6 +22,7 @@ public interface FundCompanyInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface FundCompanyInfoMapper { ...@@ -34,6 +36,7 @@ public interface FundCompanyInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface FundCompanyInfoMapper { ...@@ -45,6 +48,7 @@ public interface FundCompanyInfoMapper {
/** /**
* select by primary key * select by primary key
*
* @param companyId primary key * @param companyId primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface FundCompanyInfoMapper { ...@@ -58,6 +62,7 @@ public interface FundCompanyInfoMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface FundCompanyInfoMapper { ...@@ -67,6 +72,7 @@ public interface FundCompanyInfoMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundCountMapper { ...@@ -14,6 +14,7 @@ public interface FundCountMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundCountMapper { ...@@ -21,6 +22,7 @@ public interface FundCountMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface FundCountMapper { ...@@ -32,6 +34,7 @@ public interface FundCountMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface FundCountMapper { ...@@ -41,6 +44,7 @@ public interface FundCountMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface FundCountMapper { ...@@ -52,6 +56,7 @@ public interface FundCountMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface FundCountMapper { ...@@ -59,6 +64,7 @@ public interface FundCountMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoCompanyInfo1Mapper { ...@@ -14,6 +14,7 @@ public interface FundInfoCompanyInfo1Mapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoCompanyInfo1Mapper { ...@@ -25,6 +26,7 @@ public interface FundInfoCompanyInfo1Mapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoCompanyInfoMapper { ...@@ -14,6 +14,7 @@ public interface FundInfoCompanyInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoCompanyInfoMapper { ...@@ -25,6 +26,7 @@ public interface FundInfoCompanyInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoMapper { ...@@ -14,6 +14,7 @@ public interface FundInfoMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundInfoMapper { ...@@ -21,6 +22,7 @@ public interface FundInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface FundInfoMapper { ...@@ -34,6 +36,7 @@ public interface FundInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface FundInfoMapper { ...@@ -45,6 +48,7 @@ public interface FundInfoMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface FundInfoMapper { ...@@ -58,6 +62,7 @@ public interface FundInfoMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface FundInfoMapper { ...@@ -67,6 +72,7 @@ public interface FundInfoMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoPerformanceMapper { ...@@ -14,6 +14,7 @@ public interface FundInfoPerformanceMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoPerformanceMapper { ...@@ -25,6 +26,7 @@ public interface FundInfoPerformanceMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoPersonnelInfo1Mapper { ...@@ -14,6 +14,7 @@ public interface FundInfoPersonnelInfo1Mapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoPersonnelInfo1Mapper { ...@@ -25,6 +26,7 @@ public interface FundInfoPersonnelInfo1Mapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoPersonnelInfoMapper { ...@@ -14,6 +14,7 @@ public interface FundInfoPersonnelInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoPersonnelInfoMapper { ...@@ -25,6 +26,7 @@ public interface FundInfoPersonnelInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoView1Mapper { ...@@ -14,6 +14,7 @@ public interface FundInfoView1Mapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoView1Mapper { ...@@ -25,6 +26,7 @@ public interface FundInfoView1Mapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundInfoViewMapper { ...@@ -14,6 +14,7 @@ public interface FundInfoViewMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface FundInfoViewMapper { ...@@ -25,6 +26,7 @@ public interface FundInfoViewMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundManagerMapping1Mapper { ...@@ -14,6 +14,7 @@ public interface FundManagerMapping1Mapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundManagerMapping1Mapper { ...@@ -21,6 +22,7 @@ public interface FundManagerMapping1Mapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface FundManagerMapping1Mapper { ...@@ -32,6 +34,7 @@ public interface FundManagerMapping1Mapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface FundManagerMapping1Mapper { ...@@ -41,6 +44,7 @@ public interface FundManagerMapping1Mapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface FundManagerMapping1Mapper { ...@@ -52,6 +56,7 @@ public interface FundManagerMapping1Mapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface FundManagerMapping1Mapper { ...@@ -59,6 +64,7 @@ public interface FundManagerMapping1Mapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundManagerMappingMapper { ...@@ -14,6 +14,7 @@ public interface FundManagerMappingMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundManagerMappingMapper { ...@@ -21,6 +22,7 @@ public interface FundManagerMappingMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface FundManagerMappingMapper { ...@@ -32,6 +34,7 @@ public interface FundManagerMappingMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface FundManagerMappingMapper { ...@@ -41,6 +44,7 @@ public interface FundManagerMappingMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface FundManagerMappingMapper { ...@@ -52,6 +56,7 @@ public interface FundManagerMappingMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface FundManagerMappingMapper { ...@@ -59,6 +64,7 @@ public interface FundManagerMappingMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundMarketIndexesMapper { ...@@ -14,6 +14,7 @@ public interface FundMarketIndexesMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundMarketIndexesMapper { ...@@ -21,6 +22,7 @@ public interface FundMarketIndexesMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface FundMarketIndexesMapper { ...@@ -32,6 +34,7 @@ public interface FundMarketIndexesMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface FundMarketIndexesMapper { ...@@ -41,6 +44,7 @@ public interface FundMarketIndexesMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface FundMarketIndexesMapper { ...@@ -52,6 +56,7 @@ public interface FundMarketIndexesMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface FundMarketIndexesMapper { ...@@ -59,6 +64,7 @@ public interface FundMarketIndexesMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface FundNavMapper { ...@@ -14,6 +14,7 @@ public interface FundNavMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundNavMapper { ...@@ -21,6 +22,7 @@ public interface FundNavMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface FundNavMapper { ...@@ -32,6 +34,7 @@ public interface FundNavMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface FundNavMapper { ...@@ -41,6 +44,7 @@ public interface FundNavMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface FundNavMapper { ...@@ -52,6 +56,7 @@ public interface FundNavMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface FundNavMapper { ...@@ -59,6 +64,7 @@ public interface FundNavMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -12,8 +12,17 @@ public interface FundPerformanceMapper { ...@@ -12,8 +12,17 @@ public interface FundPerformanceMapper {
int deleteByExample(FundPerformanceExample example); int deleteByExample(FundPerformanceExample example);
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
int deleteByPrimaryKey(String id);
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +34,7 @@ public interface FundPerformanceMapper { ...@@ -25,6 +34,7 @@ public interface FundPerformanceMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,9 +42,35 @@ public interface FundPerformanceMapper { ...@@ -32,9 +42,35 @@ public interface FundPerformanceMapper {
List<FundPerformance> selectByExample(FundPerformanceExample example); List<FundPerformance> selectByExample(FundPerformanceExample example);
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
FundPerformance selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") FundPerformance record, @Param("example") FundPerformanceExample example); int updateByExampleSelective(@Param("record") FundPerformance record, @Param("example") FundPerformanceExample example);
int updateByExample(@Param("record") FundPerformance record, @Param("example") FundPerformanceExample example); int updateByExample(@Param("record") FundPerformance record, @Param("example") FundPerformanceExample example);
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
int updateByPrimaryKeySelective(FundPerformance record);
/**
* update record
*
* @param record the updated record
* @return update count
*/
int updateByPrimaryKey(FundPerformance record);
int updateBatch(List<FundPerformance> list);
int batchInsert(@Param("list") List<FundPerformance> list); int batchInsert(@Param("list") List<FundPerformance> list);
} }
\ No newline at end of file
...@@ -14,6 +14,7 @@ public interface FundPersonnelInfoMapper { ...@@ -14,6 +14,7 @@ public interface FundPersonnelInfoMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param personnelId primaryKey * @param personnelId primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface FundPersonnelInfoMapper { ...@@ -21,6 +22,7 @@ public interface FundPersonnelInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface FundPersonnelInfoMapper { ...@@ -34,6 +36,7 @@ public interface FundPersonnelInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface FundPersonnelInfoMapper { ...@@ -45,6 +48,7 @@ public interface FundPersonnelInfoMapper {
/** /**
* select by primary key * select by primary key
*
* @param personnelId primary key * @param personnelId primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface FundPersonnelInfoMapper { ...@@ -58,6 +62,7 @@ public interface FundPersonnelInfoMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface FundPersonnelInfoMapper { ...@@ -67,6 +72,7 @@ public interface FundPersonnelInfoMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface IfaImportedFundCountMapper { ...@@ -14,6 +14,7 @@ public interface IfaImportedFundCountMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface IfaImportedFundCountMapper { ...@@ -21,6 +22,7 @@ public interface IfaImportedFundCountMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface IfaImportedFundCountMapper { ...@@ -32,6 +34,7 @@ public interface IfaImportedFundCountMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface IfaImportedFundCountMapper { ...@@ -41,6 +44,7 @@ public interface IfaImportedFundCountMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface IfaImportedFundCountMapper { ...@@ -52,6 +56,7 @@ public interface IfaImportedFundCountMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface IfaImportedFundCountMapper { ...@@ -59,6 +64,7 @@ public interface IfaImportedFundCountMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoMapper { ...@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface IfaImportedFundInfoMapper { ...@@ -21,6 +22,7 @@ public interface IfaImportedFundInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface IfaImportedFundInfoMapper { ...@@ -32,6 +34,7 @@ public interface IfaImportedFundInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface IfaImportedFundInfoMapper { ...@@ -41,6 +44,7 @@ public interface IfaImportedFundInfoMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface IfaImportedFundInfoMapper { ...@@ -52,6 +56,7 @@ public interface IfaImportedFundInfoMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface IfaImportedFundInfoMapper { ...@@ -59,6 +64,7 @@ public interface IfaImportedFundInfoMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoViewMapper { ...@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoViewMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface IfaImportedFundInfoViewMapper { ...@@ -25,6 +26,7 @@ public interface IfaImportedFundInfoViewMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoViewOldMapper { ...@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoViewOldMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -25,6 +26,7 @@ public interface IfaImportedFundInfoViewOldMapper { ...@@ -25,6 +26,7 @@ public interface IfaImportedFundInfoViewOldMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
...@@ -14,6 +14,7 @@ public interface IfaImportedFundNavMapper { ...@@ -14,6 +14,7 @@ public interface IfaImportedFundNavMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface IfaImportedFundNavMapper { ...@@ -21,6 +22,7 @@ public interface IfaImportedFundNavMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface IfaImportedFundNavMapper { ...@@ -32,6 +34,7 @@ public interface IfaImportedFundNavMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface IfaImportedFundNavMapper { ...@@ -41,6 +44,7 @@ public interface IfaImportedFundNavMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface IfaImportedFundNavMapper { ...@@ -52,6 +56,7 @@ public interface IfaImportedFundNavMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface IfaImportedFundNavMapper { ...@@ -59,6 +64,7 @@ public interface IfaImportedFundNavMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface IfaImportedFundRankMapper { ...@@ -14,6 +14,7 @@ public interface IfaImportedFundRankMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param fundId primaryKey * @param fundId primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface IfaImportedFundRankMapper { ...@@ -21,6 +22,7 @@ public interface IfaImportedFundRankMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface IfaImportedFundRankMapper { ...@@ -34,6 +36,7 @@ public interface IfaImportedFundRankMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface IfaImportedFundRankMapper { ...@@ -45,6 +48,7 @@ public interface IfaImportedFundRankMapper {
/** /**
* select by primary key * select by primary key
*
* @param fundId primary key * @param fundId primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface IfaImportedFundRankMapper { ...@@ -58,6 +62,7 @@ public interface IfaImportedFundRankMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface IfaImportedFundRankMapper { ...@@ -67,6 +72,7 @@ public interface IfaImportedFundRankMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface NewFundRankMapper { ...@@ -14,6 +14,7 @@ public interface NewFundRankMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param fundId primaryKey * @param fundId primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface NewFundRankMapper { ...@@ -21,6 +22,7 @@ public interface NewFundRankMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface NewFundRankMapper { ...@@ -34,6 +36,7 @@ public interface NewFundRankMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface NewFundRankMapper { ...@@ -45,6 +48,7 @@ public interface NewFundRankMapper {
/** /**
* select by primary key * select by primary key
*
* @param fundId primary key * @param fundId primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface NewFundRankMapper { ...@@ -58,6 +62,7 @@ public interface NewFundRankMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface NewFundRankMapper { ...@@ -67,6 +72,7 @@ public interface NewFundRankMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface PersonnelInfoMapper { ...@@ -14,6 +14,7 @@ public interface PersonnelInfoMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param id primaryKey * @param id primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface PersonnelInfoMapper { ...@@ -21,6 +22,7 @@ public interface PersonnelInfoMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -34,6 +36,7 @@ public interface PersonnelInfoMapper { ...@@ -34,6 +36,7 @@ public interface PersonnelInfoMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -45,6 +48,7 @@ public interface PersonnelInfoMapper { ...@@ -45,6 +48,7 @@ public interface PersonnelInfoMapper {
/** /**
* select by primary key * select by primary key
*
* @param id primary key * @param id primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -58,6 +62,7 @@ public interface PersonnelInfoMapper { ...@@ -58,6 +62,7 @@ public interface PersonnelInfoMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -67,6 +72,7 @@ public interface PersonnelInfoMapper { ...@@ -67,6 +72,7 @@ public interface PersonnelInfoMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface PublicFundManagerMapper { ...@@ -14,6 +14,7 @@ public interface PublicFundManagerMapper {
/** /**
* delete by primary key * delete by primary key
*
* @param tsCode primaryKey * @param tsCode primaryKey
* @return deleteCount * @return deleteCount
*/ */
...@@ -21,6 +22,7 @@ public interface PublicFundManagerMapper { ...@@ -21,6 +22,7 @@ public interface PublicFundManagerMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -32,6 +34,7 @@ public interface PublicFundManagerMapper { ...@@ -32,6 +34,7 @@ public interface PublicFundManagerMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -41,6 +44,7 @@ public interface PublicFundManagerMapper { ...@@ -41,6 +44,7 @@ public interface PublicFundManagerMapper {
/** /**
* select by primary key * select by primary key
*
* @param tsCode primary key * @param tsCode primary key
* @return object by primary key * @return object by primary key
*/ */
...@@ -52,6 +56,7 @@ public interface PublicFundManagerMapper { ...@@ -52,6 +56,7 @@ public interface PublicFundManagerMapper {
/** /**
* update record selective * update record selective
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
...@@ -59,6 +64,7 @@ public interface PublicFundManagerMapper { ...@@ -59,6 +64,7 @@ public interface PublicFundManagerMapper {
/** /**
* update record * update record
*
* @param record the updated record * @param record the updated record
* @return update count * @return update count
*/ */
......
...@@ -14,6 +14,7 @@ public interface StockTradeCalMapper { ...@@ -14,6 +14,7 @@ public interface StockTradeCalMapper {
/** /**
* insert record to table * insert record to table
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
...@@ -27,6 +28,7 @@ public interface StockTradeCalMapper { ...@@ -27,6 +28,7 @@ public interface StockTradeCalMapper {
/** /**
* insert record to table selective * insert record to table selective
*
* @param record the record * @param record the record
* @return insert count * @return insert count
*/ */
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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