FundAliasDO.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.simuwang.base.pojo.dos;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import com.simuwang.base.pojo.vo.FundAliasVO;
  6. import lombok.Data;
  7. import java.util.Date;
  8. @Data
  9. public class FundAliasDO {
  10. /**
  11. * 主键Id
  12. */
  13. private Integer id;
  14. /**
  15. * 邮件解析基金名称
  16. */
  17. private String sourceFundName;
  18. /**
  19. * 邮件解析基金的备案编码
  20. */
  21. private String sourceRegisterNumber;
  22. /**
  23. * 匹配的源数据基金名称
  24. */
  25. private String targetFundName;
  26. /**
  27. * 匹配的源基金ID
  28. */
  29. private String targetFundId;
  30. /**
  31. * 匹配的源备案编码
  32. */
  33. private String targetRegisterNumber;
  34. /**
  35. * 记录的有效性;1-有效;0-无效;
  36. */
  37. private Integer isvalid;
  38. /**
  39. * 创建者Id;第一次创建时与Creator值相同,修改时与修改人值相同
  40. */
  41. private Integer creatorId;
  42. /**
  43. * 修改者Id;第一次创建时与Creator值相同,修改时与修改人值相同
  44. */
  45. private Integer updaterId;
  46. /**
  47. * 创建时间,默认第一次创建的getdate()时间
  48. */
  49. private Date createTime;
  50. /**
  51. * 修改时间;第一次创建时与CreatTime值相同,修改时与修改时间相同
  52. */
  53. private Date updateTime;
  54. public FundAliasVO toVo() {
  55. FundAliasVO fundAliasVO = new FundAliasVO();
  56. fundAliasVO.setId(this.id);
  57. fundAliasVO.setSourceFundName(this.sourceFundName);
  58. fundAliasVO.setSourceRegisterNumber(this.sourceRegisterNumber);
  59. fundAliasVO.setTargetFundId(this.targetFundId);
  60. fundAliasVO.setTargetFundName(this.targetFundName);
  61. fundAliasVO.setTargetRegisterNumber(this.targetRegisterNumber);
  62. return fundAliasVO;
  63. }
  64. }