企标制修订-技术标准流程,起草单位高级经理审核节点,导出意见
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.adc.da.workFlow.entity;
|
||||
|
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@HeadRowHeight(20)
|
||||
@ColumnWidth(15)
|
||||
public class GetQBZXDExcelDto {
|
||||
private String num; // 序号
|
||||
|
||||
private String partCode; // 条款号
|
||||
|
||||
private String oldText; // 修改前
|
||||
|
||||
private String newText; // 修改后
|
||||
|
||||
private String reason; // 修改理由
|
||||
|
||||
private String deptName; // 提出部门
|
||||
|
||||
private String userName; // 责任人
|
||||
|
||||
private String state; // 意见是否采纳
|
||||
|
||||
private String cause; // 采纳理由
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user