|
|
@@ -11,12 +11,12 @@ use rust_decimal::Decimal; |
|
|
|
#[derive(Debug, Serialize, Deserialize)] |
|
|
|
struct InstrumentInfo { |
|
|
|
id: i32, |
|
|
|
informationid: i32, |
|
|
|
instrumentcode: String, |
|
|
|
laboratoryid: i32, |
|
|
|
laboratoryid: Option<i32>, |
|
|
|
name: String, |
|
|
|
remark: String, |
|
|
|
instrumentcode: String, |
|
|
|
informationid: i32, |
|
|
|
specification: String, |
|
|
|
remark: String, |
|
|
|
} |
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)] |
|
|
|