| | |
| | | package org.jeecg.modules.dnc.request; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | @ApiModel(value = "文档查询参数", description = "文档查询参数") |
| | | public class DocInfoQueryRequest { |
| | | @ApiModelProperty(value = "文档id") |
| | | private String docId; |
| | | @ApiModelProperty(value = "绑定类型 1 产品 2 部件 3 零件 4 设备 5 工序", example = "1", required = true) |
| | | private Integer attributionType; |
| | | @ApiModelProperty(value = "绑定类型对应的id 1 产品id 2 部件id 3 零件id 4 设备id 5 工序id", example = "234324234", required = true) |