Merge branch 'develop' of http://221.226.25.34:3000/liang.cheng/weaver-hrm-organization into feature/dxf
This commit is contained in:
commit
c42ac59eaf
|
|
@ -559,4 +559,21 @@ create table JCL_ORG_DETACH (
|
||||||
create_time date null,
|
create_time date null,
|
||||||
update_time date null,
|
update_time date null,
|
||||||
constraint JCL_ORG_DETACH_PK primary key (id)
|
constraint JCL_ORG_DETACH_PK primary key (id)
|
||||||
|
);
|
||||||
|
|
||||||
|
-- JCL_ORG_CARDACCESS
|
||||||
|
create table JCL_ORG_CARDACCESS (
|
||||||
|
id int auto_increment not null,
|
||||||
|
type_id int not null,
|
||||||
|
type_name int not null,
|
||||||
|
status int null,
|
||||||
|
all_people int null,
|
||||||
|
superior int null,
|
||||||
|
all_superior int null,
|
||||||
|
custom text null ,
|
||||||
|
delete_type int null,
|
||||||
|
creator int null,
|
||||||
|
create_time date null,
|
||||||
|
update_time date null,
|
||||||
|
constraint JCL_ORG_CARDACCESS_PK primary key (id)
|
||||||
);
|
);
|
||||||
|
|
@ -504,3 +504,4 @@ create table JCL_ORG_DETACH (
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.api.organization.web;
|
||||||
|
|
||||||
|
import javax.ws.rs.Path;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
@Path("/bs/hrmorganization/cardAccess")
|
||||||
|
public class CardAccessController extends com.engine.organization.web.CardAccessController {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
package com.engine.organization.entity.personnelcard.po;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
public class CardAccessPO {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,46 @@
|
||||||
|
package com.engine.organization.entity.personnelcard.vo;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
public class CardAccessVO {
|
||||||
|
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
private Integer typeId;
|
||||||
|
|
||||||
|
private Integer typeName;
|
||||||
|
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
private Integer allPeople;
|
||||||
|
|
||||||
|
private Integer superior;
|
||||||
|
|
||||||
|
private String allSuperior;
|
||||||
|
|
||||||
|
private String custom;
|
||||||
|
|
||||||
|
private Long creator;
|
||||||
|
|
||||||
|
private int deleteType;
|
||||||
|
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
private Date updateTime;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
package com.engine.organization.service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
public interface CardAccessService {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
package com.engine.organization.service.impl;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
public class CardAccessServiceImpl {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
package com.engine.organization.web;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
|
||||||
|
public class CardAccessController {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
package com.engine.organization.wrapper;
|
||||||
|
|
||||||
|
import com.engine.organization.util.OrganizationWrapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author weaver_cl
|
||||||
|
* @Description:
|
||||||
|
* @Date 2022/11/1
|
||||||
|
* @Version V1.0
|
||||||
|
**/
|
||||||
|
public class CardAccessWrapper extends OrganizationWrapper {
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue