yangys
2024-11-02 f69073b835f1a0c66590130e1830edcdd75ebb8a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.qianwen.smartman.modules.smis.wrapper;
 
import java.util.Objects;
import com.qianwen.core.mp.support.BaseEntityWrapper;
import com.qianwen.smartman.modules.smis.convert.MalfunctionTypeConvert;
import com.qianwen.smartman.modules.smis.excel.MalfunctionTypeExcel;
import com.qianwen.smartman.modules.smis.vo.MalfunctionTypeVO;
 
public class MalfunctionTypeExcelWrapper extends BaseEntityWrapper<MalfunctionTypeVO, MalfunctionTypeExcel> {
    public static MalfunctionTypeExcelWrapper build() {
        return new MalfunctionTypeExcelWrapper();
    }
 
    public MalfunctionTypeExcel entityVO(MalfunctionTypeVO entity) {
        MalfunctionTypeExcel malfunctionTypeExcel = (MalfunctionTypeExcel) Objects.requireNonNull(MalfunctionTypeConvert.INSTANCE.convertToExcel(entity));
        return malfunctionTypeExcel;
    }
}