12 lines
369 B
JavaScript
12 lines
369 B
JavaScript
class ArtRepairFile {
|
|
constructor(params={}) {
|
|
this.id = params.id;
|
|
this.name = params.name;
|
|
this.description = params.description;
|
|
this.conditionCheckId = params.condition_check_id; //关联的状况检查记录id
|
|
this.artworkRecordId = params.artwork_record_id; //关联的艺术品id
|
|
}
|
|
|
|
}
|
|
|
|
export default ArtRepairFile |