source:
src/main/java/com/example/autopartz/model/manytomany/PartIsAppropriateForCarId.java
Last change on this file was 4d67d70, checked in by , 23 months ago | |
---|---|
|
|
File size: 212 bytes |
Line | |
---|---|
1 | package com.example.autopartz.model.manytomany; |
2 | |
3 | import lombok.Data; |
4 | |
5 | import java.io.Serializable; |
6 | |
7 | @Data |
8 | public class PartIsAppropriateForCarId implements Serializable { |
9 | Integer partid; |
10 | Integer carid; |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.