write_tool_rs/src/models/work_model.rs
2024-07-08 16:39:36 +08:00

17 lines
318 B
Rust

#[derive(Debug, Clone)]
pub struct WorkModel{
pub imei: String,
pub sn: String,
pub line_number: String,
}
impl Default for WorkModel{
fn default() -> Self{
WorkModel{
imei: "".to_string(),
sn: "".to_string(),
line_number: "".to_string(),
}
}
}