You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weaver-hrm-organization/src/com/engine/organization/entity/po/Demo.java

56 lines
1.0 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.engine.organization.entity.po;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* @Author weaver_cl
* @description:
* @Date 2022/4/26
* @Version V1.0
**/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Demo {
//主建,非自增 0表示集团 正数是现有分部信息ID
private Integer fid;
//1-集团或者虚拟组织名称 2-分部级虚拟组织分部
private Integer flevel;
//维度: 0-行政维度 负数-虚拟组织架构id
private Integer fwd;
//编号
private String fnumber;
//名称
private String fname;
//负责人id
private Integer fleader;
//编制人数
private Integer fplan;
//在岗人数
private Integer fonjob;
//是否虚拟组织0-实体组织1-虚拟组织
private Integer fisvitual;
//生效时间
private Date ftimebegin;
//失效时间
private Date ftimeend;
}