Ignore:
Timestamp:
01/08/21 03:34:14 (3 years ago)
Author:
Vzdra <vladko.zdravkovski@…>
Branches:
master
Children:
4b1c93d
Parents:
b31afbd
Message:

cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/it/finki/tinki/model/Match.java

    rb31afbd r336d09e  
    11package it.finki.tinki.model;
    22
    3 import com.sun.istack.NotNull;
    4 import it.finki.tinki.model.Jobs.Work;
    5 import it.finki.tinki.model.Users.User;
    63import it.finki.tinki.model.enumerator.WorkType;
    74import lombok.Data;
     
    129@Data
    1310public class Match {
    14 
    15 //    @Id
    16 //    @GeneratedValue(strategy = GenerationType.AUTO)
    17 //    Long id;
    18 //
    19 //    @NotNull
    20 //    Long workId;
    21 //
    22 //    @NotNull
    23 //    Long userId;
    2411
    2512    @Id
     
    3219    public Match(){}
    3320
    34 //    public Match(Long workId, Long userId, float coefficient, WorkType type) {
    35 //        this.workId = workId;
    36 //        this.userId = userId;
    37 //        this.coefficient = coefficient;
    38 //        this.type = type;
    39 //    }
    40 
    4121    public Match(EmbeddedMatchId embeddedMatchId, float coefficient, WorkType type) {
    4222        this.embeddedMatchId = embeddedMatchId;
Note: See TracChangeset for help on using the changeset viewer.