commit
6601f117cd
|
|
@ -391,6 +391,36 @@ CREATE TABLE JCL_ORG_STAFFS (
|
|||
);
|
||||
|
||||
|
||||
--JCL_CODERULE
|
||||
CREATE TABLE JCL_CODERULE (
|
||||
id int auto_increment NOT NULL,
|
||||
serial_type varchar(50) null,
|
||||
serial_enable char(1) null,
|
||||
oneself_type varchar(50) null,
|
||||
creator int null,
|
||||
delete_type int null,
|
||||
create_time date null,
|
||||
update_time date null,
|
||||
CONSTRAINT JCL_CODERULE PRIMARY KEY (id)
|
||||
);
|
||||
|
||||
--JCL_CODERULE_DETAIL
|
||||
CREATE TABLE JCL_CODERULE_DETAIL (
|
||||
id int auto_increment NOT NULL,
|
||||
coderule_id int(11) null,
|
||||
rule_type varchar(50) null,
|
||||
rule_value varchar(255) null,
|
||||
show_order int(11) null,
|
||||
creator int null,
|
||||
delete_type int null,
|
||||
create_time date null,
|
||||
update_time date null,
|
||||
CONSTRAINT JCL_CODERULE_DETAIL PRIMARY KEY (id)
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
package com.api.organization.web;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeSettingController {
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeRule {
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeRuleDetail {
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package com.engine.organization.service;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public interface CodeSettingService {
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
package com.engine.organization.service.impl;
|
||||
|
||||
import com.engine.core.impl.Service;
|
||||
import com.engine.organization.service.CodeSettingService;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeSettingServiceImpl extends Service implements CodeSettingService {
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package com.engine.organization.web;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeSettingController {
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package com.engine.organization.wrapper;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeSettingWrapper {
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue