员工信息新增人面设备员工 id 字段

This commit is contained in:
ryoeiken 2021-01-11 10:32:54 +08:00
parent 2aee85ae1b
commit a631281ba7
2 changed files with 6 additions and 0 deletions

View File

@ -144,4 +144,9 @@ public class FtStaffInfoDao {
@TableField(exist = false)
private Boolean giveOutFlag = true;
/**
* 人脸设备里的员工 id
*/
private Long personId;
}

View File

@ -22,6 +22,7 @@
<result property="qrCode" column="qr_code"/>
<result property="sex" column="sex"/>
<result property="tel" column="tel"/>
<result property="personId" column="person_id"/>
</resultMap>
<select id="selectStaffInfoWithDepart" parameterType="FtStaffInfoDao"