parent
1066b2e4f5
commit
ae27c7843c
10 changed files with 401 additions and 7 deletions
@ -0,0 +1,217 @@ |
||||
package org.springblade.desk.efficiency.excel; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BsSalaryCalculationExcel implements Serializable { |
||||
/** |
||||
* 订单号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("车间订单号") |
||||
private String woCode; |
||||
|
||||
/** |
||||
* 零件号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("零件号") |
||||
private String partCode; |
||||
|
||||
/** |
||||
* 零件名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("零件名称") |
||||
private String partName; |
||||
|
||||
/** |
||||
* 批次号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("批次号") |
||||
private String batchNo; |
||||
|
||||
/** |
||||
* 使用部门 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("使用部门") |
||||
private String useDept; |
||||
|
||||
/** |
||||
* 产品系列 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("产品型号") |
||||
private String productType; |
||||
|
||||
/** |
||||
* 镀种 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("镀种") |
||||
private String plate; |
||||
|
||||
/** |
||||
* 作业中心 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("作业中心") |
||||
private String wcName; |
||||
|
||||
/** |
||||
* 班组 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("班组") |
||||
private String team; |
||||
|
||||
/** |
||||
* 工序 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("工序") |
||||
private String ppsName; |
||||
|
||||
/** |
||||
* 定额工时 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("定额工时") |
||||
private String hourQuota; |
||||
|
||||
/** |
||||
* 准备工时 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("准备工时") |
||||
private String hourPrepar; |
||||
|
||||
/** |
||||
* 工时额定单位 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("工时额定单位") |
||||
private String hqUnit; |
||||
|
||||
/** |
||||
* 报工数 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("报工数") |
||||
private String workQty; |
||||
|
||||
/** |
||||
* 总工时 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("总工时") |
||||
private String hourTotal; |
||||
|
||||
/** |
||||
* 责任人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("责任人") |
||||
private String worker; |
||||
|
||||
/** |
||||
* 厚度 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("厚度") |
||||
private String plateThickness; |
||||
|
||||
/** |
||||
* 生产标识 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("生产标识") |
||||
private String prodIdent; |
||||
|
||||
/** |
||||
* 单批数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("单批数量") |
||||
private String singleBatchNo; |
||||
|
||||
/** |
||||
* 入库数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库数量") |
||||
private String putQuantity; |
||||
|
||||
/** |
||||
* 报废数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("报废数量") |
||||
private String scrapQty; |
||||
|
||||
/** |
||||
* 消耗数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("消耗数量") |
||||
private String lossQty; |
||||
|
||||
/** |
||||
* 试验数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("试验数量") |
||||
private String testQty; |
||||
|
||||
/** |
||||
* 单件面积(dm²) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("单件面积(dm²)") |
||||
private String poArea; |
||||
|
||||
/** |
||||
* 总面积(d㎡) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("总面积(d㎡)") |
||||
private String totalArea; |
||||
|
||||
/** |
||||
* 镀后入库时间 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("镀后入库时间") |
||||
private String putStoreTime; |
||||
|
||||
/** |
||||
* 基础薪资金额 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("基础金额") |
||||
private String baseAmount; |
||||
|
||||
/** |
||||
* 补贴薪资金额 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("补贴金额") |
||||
private String subsidyAmount; |
||||
|
||||
/** |
||||
* 总薪资金额 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("总金额") |
||||
private String totalAmount; |
||||
} |
||||
Loading…
Reference in new issue