KOSMO4-2 / KOSMO4-2/ToYou

Product.java

Open
#8 0 comments 0 reactions 0 assignees View on GitHub
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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.