parent
836f6b3bf7
commit
438bf4cf48
@ -0,0 +1,50 @@ |
|||||||
|
package com.example.demo.model; |
||||||
|
|
||||||
|
import javax.persistence.*; |
||||||
|
|
||||||
|
@Entity(name = "diancan_detail") |
||||||
|
public class DiancanDetail { |
||||||
|
|
||||||
|
@Id |
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY) |
||||||
|
private Long id; |
||||||
|
|
||||||
|
private String zhuohao; |
||||||
|
|
||||||
|
@Column(name = "menu_id") |
||||||
|
private String menuId; |
||||||
|
|
||||||
|
private String sum; |
||||||
|
|
||||||
|
public String getMenuId() { |
||||||
|
return menuId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setMenuId(String menuId) { |
||||||
|
this.menuId = menuId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getSum() { |
||||||
|
return sum; |
||||||
|
} |
||||||
|
|
||||||
|
public void setSum(String sum) { |
||||||
|
this.sum = sum; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Long id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public String getZhuohao() { |
||||||
|
return zhuohao; |
||||||
|
} |
||||||
|
|
||||||
|
public void setZhuohao(String zhuohao) { |
||||||
|
this.zhuohao = zhuohao; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
package com.example.demo.repository; |
||||||
|
|
||||||
|
import com.example.demo.model.DiancanDetail; |
||||||
|
import org.springframework.data.jpa.repository.JpaRepository; |
||||||
|
|
||||||
|
public interface DiancanDetailRespository extends JpaRepository<DiancanDetail,Long> { |
||||||
|
int deleteByZhuohao(String zhuohao); |
||||||
|
} |
Loading…
Reference in new issue