提交 8844e040 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码,后台体系[Spring Boot]

上级 39ed69df
...@@ -567,13 +567,6 @@ public class Hr_employee extends EntityMP implements Serializable { ...@@ -567,13 +567,6 @@ public class Hr_employee extends EntityMP implements Serializable {
@JSONField(name = "leave_date_to" , format="yyyy-MM-dd") @JSONField(name = "leave_date_to" , format="yyyy-MM-dd")
@JsonProperty("leave_date_to") @JsonProperty("leave_date_to")
private Timestamp leaveDateTo; private Timestamp leaveDateTo;
/**
* 是管理者
*/
@TableField(value = "manager")
@JSONField(name = "manager")
@JsonProperty("manager")
private Boolean manager;
/** /**
* 工作地点 * 工作地点
*/ */
...@@ -596,14 +589,6 @@ public class Hr_employee extends EntityMP implements Serializable { ...@@ -596,14 +589,6 @@ public class Hr_employee extends EntityMP implements Serializable {
@JSONField(name = "contract_id") @JSONField(name = "contract_id")
@JsonProperty("contract_id") @JsonProperty("contract_id")
private Integer contractId; private Integer contractId;
/**
* 员工文档
*/
@DEField(name = "google_drive_link")
@TableField(value = "google_drive_link")
@JSONField(name = "google_drive_link")
@JsonProperty("google_drive_link")
private String googleDriveLink;
/** /**
* 工作许可编号 * 工作许可编号
*/ */
...@@ -1331,14 +1316,6 @@ public class Hr_employee extends EntityMP implements Serializable { ...@@ -1331,14 +1316,6 @@ public class Hr_employee extends EntityMP implements Serializable {
this.modify("passport_id",passportId); this.modify("passport_id",passportId);
} }
/**
* 设置 [是管理者]
*/
public void setManager(Boolean manager){
this.manager = manager ;
this.modify("manager",manager);
}
/** /**
* 设置 [工作地点] * 设置 [工作地点]
*/ */
...@@ -1347,14 +1324,6 @@ public class Hr_employee extends EntityMP implements Serializable { ...@@ -1347,14 +1324,6 @@ public class Hr_employee extends EntityMP implements Serializable {
this.modify("work_location",workLocation); this.modify("work_location",workLocation);
} }
/**
* 设置 [员工文档]
*/
public void setGoogleDriveLink(String googleDriveLink){
this.googleDriveLink = googleDriveLink ;
this.modify("google_drive_link",googleDriveLink);
}
/** /**
* 设置 [工作许可编号] * 设置 [工作许可编号]
*/ */
......
...@@ -64683,19 +64683,6 @@ ...@@ -64683,19 +64683,6 @@
"major_field":0 "major_field":0
}, },
{ {
"fieldname":"MANAGER" ,
"codename":"Manager",
"field_logic_name":"是管理者",
"entity_name":"Hr_employee",
"field_type":"TRUEFALSE",
"nullable":1,
"physical_field":1,
"data_type":"BIT",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"WORK_LOCATION" , "fieldname":"WORK_LOCATION" ,
"codename":"Work_location", "codename":"Work_location",
"field_logic_name":"工作地点", "field_logic_name":"工作地点",
...@@ -64736,20 +64723,6 @@ ...@@ -64736,20 +64723,6 @@
"major_field":0 "major_field":0
}, },
{ {
"fieldname":"GOOGLE_DRIVE_LINK" ,
"codename":"Google_drive_link",
"field_logic_name":"员工文档",
"entity_name":"Hr_employee",
"field_type":"TEXT",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":100,
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"PERMIT_NO" , "fieldname":"PERMIT_NO" ,
"codename":"Permit_no", "codename":"Permit_no",
"field_logic_name":"工作许可编号", "field_logic_name":"工作许可编号",
...@@ -643,14 +643,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable { ...@@ -643,14 +643,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable {
@JsonProperty("leave_date_to") @JsonProperty("leave_date_to")
private Timestamp leaveDateTo; private Timestamp leaveDateTo;
/**
* 属性 [MANAGER]
*
*/
@JSONField(name = "manager")
@JsonProperty("manager")
private Boolean manager;
/** /**
* 属性 [WORK_LOCATION] * 属性 [WORK_LOCATION]
* *
...@@ -676,15 +668,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable { ...@@ -676,15 +668,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable {
@JsonProperty("contract_id") @JsonProperty("contract_id")
private Integer contractId; private Integer contractId;
/**
* 属性 [GOOGLE_DRIVE_LINK]
*
*/
@JSONField(name = "google_drive_link")
@JsonProperty("google_drive_link")
@Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
private String googleDriveLink;
/** /**
* 属性 [PERMIT_NO] * 属性 [PERMIT_NO]
* *
...@@ -1295,14 +1278,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable { ...@@ -1295,14 +1278,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable {
this.modify("passport_id",passportId); this.modify("passport_id",passportId);
} }
/**
* 设置 [MANAGER]
*/
public void setManager(Boolean manager){
this.manager = manager ;
this.modify("manager",manager);
}
/** /**
* 设置 [WORK_LOCATION] * 设置 [WORK_LOCATION]
*/ */
...@@ -1311,14 +1286,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable { ...@@ -1311,14 +1286,6 @@ public class Hr_employeeDTO extends DTOBase implements Serializable {
this.modify("work_location",workLocation); this.modify("work_location",workLocation);
} }
/**
* 设置 [GOOGLE_DRIVE_LINK]
*/
public void setGoogleDriveLink(String googleDriveLink){
this.googleDriveLink = googleDriveLink ;
this.modify("google_drive_link",googleDriveLink);
}
/** /**
* 设置 [PERMIT_NO] * 设置 [PERMIT_NO]
*/ */
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册