|
|
@@ -4,15 +4,19 @@ import org.springframework.beans.factory.annotation.Value |
|
|
|
|
|
|
|
interface QcResultInfo { |
|
|
|
val id: Long |
|
|
|
@get:Value("#{target.qcItem.id}") |
|
|
|
val qcItemId: Long |
|
|
|
@get:Value("#{target.qcItem.name}") |
|
|
|
val name: String |
|
|
|
@get:Value("#{target.qcItem.code}") |
|
|
|
val code: String |
|
|
|
@get:Value("#{target.qcItem?.id}") |
|
|
|
val qcItemId: Long? |
|
|
|
@get:Value("#{target.qcItem?.code}") |
|
|
|
val code: String? |
|
|
|
@get:Value("#{target.qcItem?.name}") |
|
|
|
val name: String? |
|
|
|
@get:Value("#{target.qcItem?.description}") |
|
|
|
val description: String? |
|
|
|
val remarks: String? |
|
|
|
@get:Value("#{target.stockInLine?.id}") |
|
|
|
val stockInLineId: Long? |
|
|
|
@get:Value("#{target.stockOutLine?.id}") |
|
|
|
val stockOutLineId: Long? |
|
|
|
val failQty: Double |
|
|
|
val failQty: Double? |
|
|
|
val qcPassed: Boolean |
|
|
|
} |