Commit 891c29a2 by 彭祥礼

增加KPI管理类

parent 6aaf9cb7
package com.winsun.bean;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
import java.io.Serializable;
/**
* 楼长KPI管理类
*
* @author xiangli
* @create 2020/4/27 11:28
*/
@Data
@TableName("hhr_lz_kpi")
public class LzKpi implements Serializable {
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private int id;
/**
*
*/
@TableId(value = "report_daily")
private int reportDaily;
/**
*
*/
@TableId(value = "collective_sales")
private int collectiveSales;
/**
*
*/
@TableId(value = "weekly_meeting")
private int weeklyMeeting;
/**
*
*/
@TableId(value = "organ_training")
private int organTraining;
/**
*
*/
@TableId(value = "design_plan")
private int designPlan;
/**
*
*/
private int kpi;
/**
*
*/
@TableId(value = "user_id")
private String userId;
/**
*
*/
private String month;
/**
*
*/
@TableId(value = "is_del")
private String isDel;
/**
*
*/
private String sysuName;
/**
*
*/
private String account;
/**
*县分
*/
private String substName;
/**
*
*/
private int universityId;
/**
*
*/
private String universityName;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment