+异常确认标记字段

This commit is contained in:
jing's 2024-03-31 15:46:08 +08:00
parent 178ed71853
commit c193718b2a
4 changed files with 20 additions and 1 deletions

View File

@ -181,6 +181,11 @@ public class BomNewEbomChildEntity implements Serializable {
@ApiModelProperty(value = "异常状态1=正常、2=冻结/完全弃用异常、3=递归异常、4=数据不完整异常、5=超级物料异常、6=重复异常")
private Integer exceptionStatus;
@TableField(value = "exception_tag")
@ApiModelProperty(value = "异常确认标记")
private String exceptionTag;
/**
* 来源1-原BOM转换 2-EXCE导入 3-MDM创建
*/
@ -214,6 +219,12 @@ public class BomNewEbomChildEntity implements Serializable {
@ApiModelProperty("BOM-版本Row_id(parent表row_id 关联)")
private Long bomVersionRowId;
private static final long serialVersionUID = -14147430944632372L;
}

View File

@ -324,6 +324,11 @@ public class BomNewEbomParentVO extends BaseMaterialVO implements Serializable {
@ApiModelProperty("生成虚拟包的跟节点物料编码")
private String virtualPartRootMaterialNo;
@ApiModelProperty(value = "异常确认标记")
private String exceptionTag;
private List<BomNewEbomParentVO> childNodes = Collections.emptyList();
private static final long serialVersionUID = 1L;

View File

@ -1248,6 +1248,7 @@ public class BomNewEbomParentService extends ServiceImpl<BomNewEbomParentMapper,
.set(BomNewEbomParentEntity::getAuditUserName, SessionUtil.getUserName())
.set(BomNewEbomParentEntity::getStatus, EBomStatusEnum.CHECKED.getValue())
.set(BomNewEbomParentEntity::getEditStatus, EbomEditStatusEnum.HANDLER_FINISHED.getValue())
.set(BomNewEbomParentEntity::getRevertDesc,"")
.in(BomNewEbomParentEntity::getRowId, updateReviewIdList);
//child表状态变更

View File

@ -26,6 +26,8 @@
<result column="modify_time" property="modifyTime" jdbcType="TIMESTAMP"/>
<result column="edit_status" property="editStatus" jdbcType="INTEGER"/>
<result column="exception_status" property="exceptionStatus" jdbcType="INTEGER"/>
<result column="exception_tag" property="exceptionTag" jdbcType="VARCHAR"/>
<result column="source" property="source" jdbcType="INTEGER"/>
<result column="source_row_id" property="sourceRowId" jdbcType="BIGINT"/>
<result column="remark" property="remark" jdbcType="VARCHAR"/>
@ -39,7 +41,7 @@
row_id, parent_row_id, identity_no, order_number, drawing_no, material_no, material_name, material_desc,
material_texture, material_unit, material_category_code, unit_weight, num, total_weight, project_type,
project_type_input_type, created_by,virtual_part_is, created_time, modify_time, edit_status, exception_status, source,
source_row_id, remark,virtual_part_type,virtual_part_root_material_no,bom_version_row_id
source_row_id, remark,virtual_part_type,virtual_part_root_material_no,bom_version_row_id,exception_tag
</sql>