Merge remote-tracking branch 'origin/dev/dev' into dev/dev
# Conflicts: # src/main/java/com/ai/da/python/PythonService.java
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package com.ai.da.mapper.primary;
|
||||
|
||||
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||||
import com.ai.da.mapper.primary.entity.BrandDNA;
|
||||
|
||||
public interface BrandDNAMapper extends CommonMapper<BrandDNA> {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.ai.da.mapper.primary;
|
||||
|
||||
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||||
import com.ai.da.mapper.primary.entity.BrandRelLibrary;
|
||||
|
||||
public interface BrandRelLibraryMapper extends CommonMapper<BrandRelLibrary> {
|
||||
}
|
||||
37
src/main/java/com/ai/da/mapper/primary/entity/BrandDNA.java
Normal file
37
src/main/java/com/ai/da/mapper/primary/entity/BrandDNA.java
Normal file
@@ -0,0 +1,37 @@
|
||||
package com.ai.da.mapper.primary.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@TableName("brand")
|
||||
public class BrandDNA implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
private Long accountId;
|
||||
|
||||
private String brandName;
|
||||
|
||||
private String brandSlogan;
|
||||
|
||||
private String brandLogo;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
private LocalDateTime updateTime;
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.ai.da.mapper.primary.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@TableName("brand_rel_library")
|
||||
public class BrandRelLibrary implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
private Long brandId;
|
||||
private Long libraryId;
|
||||
|
||||
}
|
||||
@@ -19,6 +19,8 @@ public class ToProductElement implements Serializable {
|
||||
@ApiModelProperty(value = "userLikeGroupId")
|
||||
private Long userLikeGroupId;
|
||||
|
||||
private Long projectId;
|
||||
|
||||
@ApiModelProperty(value = "url")
|
||||
private String url;
|
||||
|
||||
|
||||
@@ -19,6 +19,8 @@ public class ToProductImageRecord implements Serializable {
|
||||
@ApiModelProperty(value = "userLikeGroupId")
|
||||
private Long userLikeGroupId;
|
||||
|
||||
private Long projectId;
|
||||
|
||||
@ApiModelProperty(value = "prompt")
|
||||
private String prompt;
|
||||
|
||||
|
||||
@@ -49,4 +49,6 @@ public class ToProductImageResult implements Serializable {
|
||||
private BigDecimal imageStrength;
|
||||
|
||||
private String direction;
|
||||
|
||||
private Long projectId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user