9/9 业务类型增加是否常用

workplace
wangwei 10 months ago
parent e7c1b4028f
commit 94ff408b57

@ -159,6 +159,12 @@ public class SysWorkplaceDocumentEntity {
@TableField(value = "number") @TableField(value = "number")
private Integer number; private Integer number;
/**
* : 1;0:
*/
@TableField(value = "isPopular")
private Integer isPopular;
} }

@ -137,6 +137,7 @@ public class SysWorkplaceDocumentResponse {
private Integer orderFinishVerify; private Integer orderFinishVerify;
private Integer number; private Integer number;
private Integer isPopular;
public String getThrBusName() { public String getThrBusName() {

@ -19,11 +19,10 @@
ico.tagStatus, ico.tagStatus,
ico.splitStatus, ico.splitStatus,
ico.invAlert, ico.invAlert,
ico.splitMsg ico.splitMsg,
, ico.fromCorpName,
ico.tagMsg, ico.tagMsg,
sys_workplace_document.busName busTypeName, sys_workplace_document.busName busTypeName,
bc.name fromCorpName,
sw.workplaceName, sw.workplaceName,
ico.id, ico.id,
ico.orderTime, ico.orderTime,

@ -4363,6 +4363,11 @@ CALL Pro_Temp_ColumnWork('sys_workplace_document', 'orderFinishVerify',
1); 1);
CALL Pro_Temp_ColumnWork('sys_workplace_document', 'isPopular',
' tinyint NULL DEFAULT NULL COMMENT ''是否常用:0:否;1是''',
1);
CALL Pro_Temp_ColumnWork('sys_workplace_document', 'number', CALL Pro_Temp_ColumnWork('sys_workplace_document', 'number',
'int NULL DEFAULT NULL COMMENT ''顺序号''', 'int NULL DEFAULT NULL COMMENT ''顺序号''',
1); 1);

Loading…
Cancel
Save