| | |
| | | @Schema(description = "合同编号", example = "1") |
| | | private Long contractId; |
| | | |
| | | @Schema(description = "问题类型: 1-一般问题 2-维修问题 3-退货问题", example = "1") |
| | | private Integer issueType; |
| | | |
| | | @Schema(description = "问题分类", example = "外观缺陷") |
| | | private String issueCategory; |
| | | |
| | | @Schema(description = "问题描述", example = "收到货后发现产品表面有划痕") |
| | | private String issueDescription; |
| | | |
| | | @Schema(description = "严重程度: 0-轻微 1-一般 2-严重 3-致命", example = "1") |
| | | private Integer severityLevel; |
| | | |
| | | @Schema(description = "备注", example = "客户要求尽快处理") |
| | | private String remark; |
| | | |