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

init

parent f0c40c5c
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.
...@@ -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