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

init

parent f0c40c5c
......@@ -7,8 +7,8 @@ import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 基金与基金经理关联
*/
* 基金与基金经理关联
*/
@Data
@Builder
@AllArgsConstructor
......@@ -17,28 +17,28 @@ public class FundManagerMapping1 {
private String id;
/**
* 基金id
*/
* 基金id
*/
private String fundId;
/**
* 基金经理id,即人员id
*/
* 基金经理id,即人员id
*/
private String fundManagerId;
/**
* 基金管理开始时间
*/
* 基金管理开始时间
*/
private Date managementStartDate;
/**
* 基金管理结束时间
*/
* 基金管理结束时间
*/
private Date managementEndDate;
/**
* 前台是否可见,1-可见 0-不可见
*/
* 前台是否可见,1-可见 0-不可见
*/
private Integer isvisible;
private String createBy;
......
......@@ -8,8 +8,8 @@ import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 指数
*/
* 指数
*/
@Data
@Builder
@AllArgsConstructor
......@@ -20,13 +20,13 @@ public class FundMarketIndexes {
private String indexId;
/**
* 指数代码
*/
* 指数代码
*/
private String indexCode;
/**
* 更新日期
*/
* 更新日期
*/
private Date priceDate;
private BigDecimal preclose;
......
package com.tanpu.fund.entity.generator;
import java.math.BigDecimal;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 基金历史业绩
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class FundPerformance {
private Integer id;
private Date priceDate;
private String id;
/**
* 基金id
*/
private String fundId;
private String endDate;
private Double cumulativeNav;
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 Date endDate;
private Double ret4yBm1;
private Double ret4yA;
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 priceDate;
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.
......@@ -17,83 +17,83 @@ public class IfaImportedFundInfo {
private String fundName;
/**
* 基金公司
*/
* 基金公司
*/
private String companyName;
/**
* 子策略
*/
* 子策略
*/
private Integer substrategy;
/**
* 投资策略
*/
* 投资策略
*/
private Integer strategy;
/**
* 基金经理
*/
* 基金经理
*/
private String manageName;
/**
* 风险等级
*/
* 风险等级
*/
private String riskLevel;
/**
* 成立日期
*/
* 成立日期
*/
private Date inceptionDate;
/**
* 备案编号
*/
* 备案编号
*/
private String registerNumber;
/**
* 开放日
*/
* 开放日
*/
private String openDay;
/**
* 认购起点(万)
*/
* 认购起点(万)
*/
private BigDecimal minInvestmentShare;
/**
* 追加起点(万)
*/
* 追加起点(万)
*/
private BigDecimal subsequentInvestmentShare;
/**
* 认购费率
*/
* 认购费率
*/
private BigDecimal subscriptionFee;
/**
* 赎回费率
*/
* 赎回费率
*/
private BigDecimal redemptionFee;
/**
* 管理费率
*/
* 管理费率
*/
private BigDecimal managementFee;
/**
* 业绩报酬
*/
* 业绩报酬
*/
private BigDecimal performanceFee;
/**
* 业绩计提方式
*/
* 业绩计提方式
*/
private String performanceCalculateMethod;
/**
* ifa id
*/
* ifa id
*/
private String ifaId;
private Date createTime;
......
......@@ -15,23 +15,23 @@ public class IfaImportedFundNav {
private Integer id;
/**
* 基金id
*/
* 基金id
*/
private String fundId;
/**
* 净值日期
*/
* 净值日期
*/
private Date priceDate;
/**
* 单位净值
*/
* 单位净值
*/
private BigDecimal nav;
/**
* 考虑分红再投资的单位累计净值
*/
* 考虑分红再投资的单位累计净值
*/
private BigDecimal cumulativeNav;
private Integer deleteTag;
......
......@@ -6,60 +6,60 @@ import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 公募基金经理基础信息
*/
* 公募基金经理基础信息
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class PublicFundManager {
/**
* 基金代码
*/
* 基金代码
*/
private String tsCode;
/**
* 公告日期
*/
* 公告日期
*/
private String annDate;
/**
* 基金经理姓名
*/
* 基金经理姓名
*/
private String name;
/**
* 离任日期
*/
* 离任日期
*/
private String endDate;
/**
* 性别
*/
* 性别
*/
private String gender;
/**
* 出生年份
*/
* 出生年份
*/
private String birthYear;
/**
* 学历
*/
* 学历
*/
private String edu;
/**
* 国籍
*/
* 国籍
*/
private String nationality;
/**
* 任职日期
*/
* 任职日期
*/
private String beginDate;
/**
* 简历
*/
* 简历
*/
private String resume;
}
\ No newline at end of file
......@@ -14,6 +14,7 @@ public interface CompanyInfoMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface CompanyInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface CompanyInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface CompanyInfoMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface CompanyInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface CompanyInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundCompanyInfoMapper {
/**
* delete by primary key
*
* @param companyId primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundCompanyInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface FundCompanyInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface FundCompanyInfoMapper {
/**
* select by primary key
*
* @param companyId primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface FundCompanyInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface FundCompanyInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundCountMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundCountMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface FundCountMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface FundCountMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface FundCountMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface FundCountMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoCompanyInfo1Mapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoCompanyInfo1Mapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoCompanyInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoCompanyInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface FundInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface FundInfoMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface FundInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface FundInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoPerformanceMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoPerformanceMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoPersonnelInfo1Mapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoPersonnelInfo1Mapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoPersonnelInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoPersonnelInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoView1Mapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoView1Mapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundInfoViewMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface FundInfoViewMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface FundManagerMapping1Mapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundManagerMapping1Mapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface FundManagerMapping1Mapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface FundManagerMapping1Mapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface FundManagerMapping1Mapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface FundManagerMapping1Mapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundManagerMappingMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundManagerMappingMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface FundManagerMappingMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface FundManagerMappingMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface FundManagerMappingMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface FundManagerMappingMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundMarketIndexesMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundMarketIndexesMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface FundMarketIndexesMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface FundMarketIndexesMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface FundMarketIndexesMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface FundMarketIndexesMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface FundNavMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundNavMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface FundNavMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface FundNavMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface FundNavMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface FundNavMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -12,8 +12,17 @@ public interface FundPerformanceMapper {
int deleteByExample(FundPerformanceExample example);
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
int deleteByPrimaryKey(String id);
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +34,7 @@ public interface FundPerformanceMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -32,9 +42,35 @@ public interface FundPerformanceMapper {
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 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);
}
\ No newline at end of file
......@@ -14,6 +14,7 @@ public interface FundPersonnelInfoMapper {
/**
* delete by primary key
*
* @param personnelId primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface FundPersonnelInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface FundPersonnelInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface FundPersonnelInfoMapper {
/**
* select by primary key
*
* @param personnelId primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface FundPersonnelInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface FundPersonnelInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface IfaImportedFundCountMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface IfaImportedFundCountMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface IfaImportedFundCountMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface IfaImportedFundCountMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface IfaImportedFundCountMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface IfaImportedFundCountMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface IfaImportedFundInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface IfaImportedFundInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface IfaImportedFundInfoMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface IfaImportedFundInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface IfaImportedFundInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoViewMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface IfaImportedFundInfoViewMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface IfaImportedFundInfoViewOldMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -25,6 +26,7 @@ public interface IfaImportedFundInfoViewOldMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......
......@@ -14,6 +14,7 @@ public interface IfaImportedFundNavMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface IfaImportedFundNavMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface IfaImportedFundNavMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface IfaImportedFundNavMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface IfaImportedFundNavMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface IfaImportedFundNavMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface IfaImportedFundRankMapper {
/**
* delete by primary key
*
* @param fundId primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface IfaImportedFundRankMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface IfaImportedFundRankMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface IfaImportedFundRankMapper {
/**
* select by primary key
*
* @param fundId primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface IfaImportedFundRankMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface IfaImportedFundRankMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface NewFundRankMapper {
/**
* delete by primary key
*
* @param fundId primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface NewFundRankMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface NewFundRankMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface NewFundRankMapper {
/**
* select by primary key
*
* @param fundId primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface NewFundRankMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface NewFundRankMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface PersonnelInfoMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface PersonnelInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -34,6 +36,7 @@ public interface PersonnelInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -45,6 +48,7 @@ public interface PersonnelInfoMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
......@@ -58,6 +62,7 @@ public interface PersonnelInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -67,6 +72,7 @@ public interface PersonnelInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface PublicFundManagerMapper {
/**
* delete by primary key
*
* @param tsCode primaryKey
* @return deleteCount
*/
......@@ -21,6 +22,7 @@ public interface PublicFundManagerMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -32,6 +34,7 @@ public interface PublicFundManagerMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
......@@ -41,6 +44,7 @@ public interface PublicFundManagerMapper {
/**
* select by primary key
*
* @param tsCode primary key
* @return object by primary key
*/
......@@ -52,6 +56,7 @@ public interface PublicFundManagerMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
......@@ -59,6 +64,7 @@ public interface PublicFundManagerMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/
......
......@@ -14,6 +14,7 @@ public interface StockTradeCalMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
......@@ -27,6 +28,7 @@ public interface StockTradeCalMapper {
/**
* insert record to table selective
*
* @param record the record
* @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