提交修改
This commit is contained in:
parent
174c39afe2
commit
4720d5e6be
@ -1,12 +1,12 @@
|
||||
package com.heyu.api.data.entity.vv;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import com.lz.mybatis.plugin.annotations.AS;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;import java.util.Date;
|
||||
import java.util.Date;
|
||||
/**
|
||||
*活动
|
||||
* @author quyixiao
|
||||
|
||||
@ -10,7 +10,7 @@ import java.util.Date;import java.util.Date;
|
||||
/**
|
||||
*类目表
|
||||
* @author quyixiao
|
||||
* @since 2025-11-07
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
|
||||
@Data
|
||||
@ -40,7 +40,7 @@ private static final long serialVersionUID = 1L;
|
||||
//修改时间
|
||||
private Date modifyTime;
|
||||
//父亲类目id
|
||||
private Integer parentId;
|
||||
private Long parentId;
|
||||
//图片url
|
||||
private String imageUrl;
|
||||
//名称
|
||||
@ -113,14 +113,14 @@ private static final long serialVersionUID = 1L;
|
||||
* 父亲类目id
|
||||
* @return
|
||||
*/
|
||||
public Integer getParentId() {
|
||||
public Long getParentId() {
|
||||
return parentId;
|
||||
}
|
||||
/**
|
||||
* 父亲类目id
|
||||
* @param parentId
|
||||
*/
|
||||
public void setParentId(Integer parentId) {
|
||||
public void setParentId(Long parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ public class MysqlMain_update {
|
||||
}
|
||||
List<TablesBean> list = new ArrayList<TablesBean>();
|
||||
|
||||
list.add(new TablesBean("vv_trade_order"));
|
||||
list.add(new TablesBean("vv_app_category"));
|
||||
|
||||
|
||||
|
||||
|
||||
@ -138,7 +138,6 @@ public class AdminReverseController {
|
||||
vvReverseOrderEntity.setStatus(vvApproveRequest.getStatus());
|
||||
vvReverseOrderDao.updateVvReverseOrderById(vvReverseOrderEntity);
|
||||
|
||||
|
||||
List<VvReverseOrderLineEntity> vvReverseOrderLineEntities = vvReverseOrderLineDao.selectVvReverseOrderLineByReverseOrderId(vvApproveRequest.getReverseOrderId());
|
||||
List<Long> tradeOrderLineIds = SanUtils.list2list(vvReverseOrderLineEntities, VvReverseOrderLineEntity::getTradeOrderLineId);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user