完善了商品类别接口

This commit is contained in:
chen-xin-zhi 2024-10-31 23:42:11 +08:00
parent 45abf0e74a
commit e75643ab29
5 changed files with 57 additions and 8 deletions

View File

@ -56,9 +56,7 @@ public class GoodController {
Good good = new Good(); Good good = new Good();
BeanUtils.copyProperties(goodAddRequest, good); BeanUtils.copyProperties(goodAddRequest, good);
boolean save = goodService.save(good); boolean save = goodService.save(good);
if (!save) { ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR);
throw new BusinessException(ErrorCode.SYSTEM_ERROR);
}
return ResultUtils.success(true, "商品插入成功"); return ResultUtils.success(true, "商品插入成功");
} }

View File

@ -6,6 +6,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date;
@Data @Data
public class Address implements Serializable { public class Address implements Serializable {
@ -46,17 +47,26 @@ public class Address implements Serializable {
*/ */
private Long userId; private Long userId;
/**
* 是否删除
*/
private Integer isDelete;
/** /**
* 是否为默认地址 * 是否为默认地址
*/ */
private Integer isDefault; private Integer isDefault;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial @Serial
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

View File

@ -7,6 +7,7 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date;
@Data @Data
public class Category implements Serializable { public class Category implements Serializable {
@ -37,6 +38,22 @@ public class Category implements Serializable {
private String typeIntro; private String typeIntro;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial @Serial
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
} }

View File

@ -0,0 +1,6 @@
package com.cultural.heritage.model.entity;
public class Coupon {
}

View File

@ -7,6 +7,9 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
import java.io.Serial;
import java.util.Date;
@TableName(value = "good") @TableName(value = "good")
@Data @Data
@ -82,7 +85,22 @@ public class Good {
*/ */
private Integer isShelves; private Integer isShelves;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
private Integer isDelete;
@Serial
@TableField(exist = false) @TableField(exist = false)
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;