DepartmentEmployeeConstant.java 1.07 KB
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
package com.tanpu.feo.feojob.constant;


/**
 * 部门员工关系表Constant 数据库表字段对应的实体类属性名常量类,
 * 					在编写自定义impl层tk.mybatis方法需要指定属性名时使用
 * @author zejia zj wu 2021年05月18日
 * @version 1.0
 */
public class DepartmentEmployeeConstant{

	/** 唯一主键 */
	public static final String ID = "id";
	/** 员工id */
	public static final String EMPLOYEE_ID = "employeeId";
	/** 部门id */
	public static final String DEPARTMENT_ID = "departmentId";
	/** 类型, d负责人, s普通职员 */
	public static final String TYPE = "type";
	/** 机构id */
	public static final String ORG_ID = "orgId";
	/** 0未删除,1删除 */
	public static final String DELETE_TAG = "deleteTag";
	/** 创建时间 */
	public static final String CREATE_TIME = "createTime";
	/** 修改时间 */
	public static final String UPDATE_TIME = "updateTime";
	/** 修改人 */
	public static final String UPDATE_BY = "updateBy";
	/** 创建人 */
	public static final String CREATE_BY = "createBy";

	private DepartmentEmployeeConstant() {}
}