Commit bb7151e4 authored by LiuLin's avatar LiuLin

fix(tcm):调整业务代码结构

parent 3c60f8dd
package com.yeejoin.amos.boot.module.tcm.flc.api.dto;
import com.yeejoin.amos.boot.biz.common.dto.BaseDto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.yeejoin.amos.boot.biz.common.dto.BaseDto;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 附件表
* 公共附件
*
* @author system_generator
* @date 2022-09-22
* @date 2021-07-16
*/
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value="AttachmentDto", description="附件表")
public class AttachmentDto extends BaseDto {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "附件名称")
private String name;
@ApiModel(value="AttachmentDto", description="附件dto")
public class AttachmentDto extends BaseDto {
@ApiModelProperty(value = "关联对象id")
private Long sourceId;
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "附件信息(json对象)")
private String info;
@ApiModelProperty(value = "文件地址")
private String url;
@ApiModelProperty(value = "附件类型")
private String type;
@ApiModelProperty(value = "文件名称")
private String name;
@ApiModelProperty(value = "文件类型")
private String type;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment