修改了商品的实体类和数据库表结构
This commit is contained in:
parent
48e73a708b
commit
9f1d2613dd
@ -23,6 +23,24 @@ public class ProductEntity {
|
||||
*/
|
||||
private String productName;
|
||||
|
||||
/**
|
||||
* 省
|
||||
*/
|
||||
@Column(length = 32, columnDefinition = "varchar(32)")
|
||||
private String productPro;
|
||||
|
||||
/**
|
||||
* 市
|
||||
*/
|
||||
@Column(length = 32, columnDefinition = "varchar(32)")
|
||||
private String productCity;
|
||||
|
||||
/**
|
||||
* 区
|
||||
*/
|
||||
@Column(length = 32, columnDefinition = "varchar(32)")
|
||||
private String productCounty;
|
||||
|
||||
/**
|
||||
* 商品描述
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user