|
|
|
@ -18,7 +18,7 @@ import lombok.NoArgsConstructor;
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@OrganizationTable(pageId = "0cdfd5bb-dc09-11ec-b69e-00ffcbed7508",
|
|
|
|
|
fields = "t.id,t.is_used,s.control_dimension,t.plan_id,t.comp_id,t.dept_id,t.job_id,t.staff_num,t.permanent_num,t.freeze_num,t.lack_status,t.staff_desc",
|
|
|
|
|
fields = "t.id,t.is_used,s.control_dimension,t.plan_id,t.comp_id,t.dept_id,t.job_id,t.staff_num,t.permanent_num,t.freeze_num,t.lack_status,t.staff_desc,t.description",
|
|
|
|
|
fromSql = "FROM jcl_org_staff t inner join jcl_org_staffplan s on t.plan_id = s.id",
|
|
|
|
|
orderby = "id desc",
|
|
|
|
|
primarykey = "id",
|
|
|
|
@ -91,4 +91,11 @@ public class StaffTableVO {
|
|
|
|
|
@OrganizationTableColumn(labelId = 547349, text = "编制描述", width = "10%", column = "staff_desc")
|
|
|
|
|
private String staffDesc;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 描述说明
|
|
|
|
|
*/
|
|
|
|
|
@OrganizationTableColumn(labelId = 547142, text = "描述说明", width = "10%", column = "description")
|
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|