Merge branch 'develop' of http://221.226.25.34:3000/liang.cheng/weaver-hrm-organization into feature/dxf
commit
c42ac59eaf
@ -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