spring-cloud-gcp-samples/spring-cloud-gcp-data-spanner-template-sample/src/main/java/com/example/Trader.java [57:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Trader(
      String traderId,
      String firstName,
      String lastName,
      Timestamp createdOn,
      List<Timestamp> modifiedOn) {
    this.traderId = traderId;
    this.firstName = firstName;
    this.lastName = lastName;
    this.createdOn = createdOn;
    this.modifiedOn = modifiedOn;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spring-cloud-gcp-samples/spring-cloud-gcp-data-spanner-repository-sample/src/main/java/com/example/Trader.java [85:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Trader(
      String traderId,
      String firstName,
      String lastName,
      Timestamp createdOn,
      List<Timestamp> modifiedOn) {
    this.traderId = traderId;
    this.firstName = firstName;
    this.lastName = lastName;
    this.createdOn = createdOn;
    this.modifiedOn = modifiedOn;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



