
9 changed files with 94 additions and 14 deletions
@ -0,0 +1,31 @@ |
|||
package com.yxt.customer.biz.crmfile; |
|||
|
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* Project: anrui-base(安瑞基础信息模块) <br/> |
|||
* File: CommonAppendixQuery.java <br/> |
|||
* Class: com.yxt.anrui.base.api.commonappendix.CommonAppendixQuery <br/> |
|||
* Description: 公共附件表 查询条件. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2021-10-28 08:59:25 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@ApiModel(value = "公共附件表 查询条件", description = "公共附件表 查询条件") |
|||
@Data |
|||
public class CommonAppendixSelectQuery implements Query { |
|||
|
|||
@ApiModelProperty("关联业务对象sid") |
|||
private String linkSid; |
|||
|
|||
@ApiModelProperty("附件类型") |
|||
private String attachType; |
|||
} |
Loading…
Reference in new issue