| package doumeemes.dao.ext.dto; | 
|   | 
| import cn.afterturn.easypoi.excel.annotation.Excel; | 
| import cn.afterturn.easypoi.excel.annotation.ExcelTarget; | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2022/04/20 10:56 | 
|  */ | 
| @Data | 
| @ApiModel("绩效工资配置导入") | 
| @ExcelTarget("SalaryParamImportDTO") | 
| public class SalaryParamImportDTO { | 
|   | 
|     @Excel(name="计价方式",orderNum ="1") | 
|     private String type; | 
|   | 
|     @Excel(name="工厂名称",orderNum ="2") | 
|     private String departName; | 
|   | 
|     @Excel(name="物料名称",orderNum ="3") | 
|     private String materialName; | 
|   | 
|     @Excel(name="物料编码",orderNum ="4") | 
|     private String materialCode; | 
|   | 
|     @Excel(name="工序名称",orderNum ="5") | 
|     private String procedureName; | 
|   | 
|     @Excel(name="工资单价(元)",orderNum ="6") | 
|     private BigDecimal salary; | 
|   | 
|     @Excel(name="标准产出",orderNum ="7") | 
|     private String num; | 
|   | 
|     @Excel(name="标准工时",orderNum ="8") | 
|     private String timesName; | 
|   | 
|     @Excel(name="不良是否计入",orderNum ="9") | 
|     private String unqualified; | 
| } |