TASK:workspace、design模块代码;
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
|
||||
package com.ai.da.model.vo;
|
||||
|
||||
import com.ai.da.mapper.entity.TDesignPythonOutfitDetail;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
|
||||
/**
|
||||
* design item详情表视图实体类
|
||||
*
|
||||
* @author Arcana
|
||||
* @since 2023-09-04
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel(value = "TDesignPythonOutfitDetailVO对象", description = "design item详情表")
|
||||
public class TDesignPythonOutfitDetailVO extends TDesignPythonOutfitDetail {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
22
src/main/java/com/ai/da/model/vo/TDesignPythonOutfitVO.java
Normal file
22
src/main/java/com/ai/da/model/vo/TDesignPythonOutfitVO.java
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
package com.ai.da.model.vo;
|
||||
|
||||
|
||||
import com.ai.da.mapper.entity.TDesignPythonOutfit;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
|
||||
/**
|
||||
* design item表 存对应design的8张图片视图实体类
|
||||
*
|
||||
* @author Arcana
|
||||
* @since 2023-09-04
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel(value = "TDesignPythonOutfitVO对象", description = "design item表 存对应design的8张图片")
|
||||
public class TDesignPythonOutfitVO extends TDesignPythonOutfit {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
21
src/main/java/com/ai/da/model/vo/WorkspaceVO.java
Normal file
21
src/main/java/com/ai/da/model/vo/WorkspaceVO.java
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
package com.ai.da.model.vo;
|
||||
|
||||
import com.ai.da.mapper.entity.Workspace;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
|
||||
/**
|
||||
* 视图实体类
|
||||
*
|
||||
* @author Arcana
|
||||
* @since 2023-08-01
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel(value = "WorkspaceVO对象", description = "WorkspaceVO对象")
|
||||
public class WorkspaceVO extends Workspace {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user