Product.java
- Dominant language
- Jupyter Notebook
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
package com.toyou.project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@NoArgsConstructor
@AllArgsConstructor
@Builder
@Data
@Entity
public class Product {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int productNo;
@Column(nullable = false, length = 100)
private String productName;
@Column(nullable = false)
private int productPrice;
@Column(length = 1000)
private String productInfo;
}
Contributor guide
No contributing guide indexed for this repository
Research direction
The issue body contains a Product.java entity with JPA and Lombok annotations, but it does not describe a requested change or expected outcome. Start by reading the entity and nearby model classes to understand the project conventions; clarify the intended work and completion criteria before coding.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- backend, database
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100