parent
d8b1663d26
commit
2b29010906
@ -0,0 +1,116 @@
|
||||
package com.ssf.mysqloracletest.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 重点人员信息表
|
||||
* @TableName meta_imp_user_info
|
||||
*/
|
||||
@TableName(value ="meta_imp_user_info")
|
||||
@Data
|
||||
public class MetaImpUserInfo implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 照片
|
||||
*/
|
||||
private String userPic;
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
*/
|
||||
private String userName;
|
||||
|
||||
/**
|
||||
* 身份证号码
|
||||
*/
|
||||
private String idCard;
|
||||
|
||||
/**
|
||||
* 性别
|
||||
*/
|
||||
private Integer sex;
|
||||
|
||||
/**
|
||||
* 联系方式
|
||||
*/
|
||||
private String phone;
|
||||
|
||||
/**
|
||||
* 重点人大类
|
||||
*/
|
||||
private String impUserType;
|
||||
|
||||
/**
|
||||
* 重点人小类
|
||||
*/
|
||||
private String impUserSubType;
|
||||
|
||||
/**
|
||||
* 户籍地区号
|
||||
*/
|
||||
private String houseHoldRegister;
|
||||
|
||||
/**
|
||||
* 户籍地详址
|
||||
*/
|
||||
private String houseHoldAddress;
|
||||
|
||||
/**
|
||||
* 现住地区号
|
||||
*/
|
||||
private String habitationRegister;
|
||||
|
||||
/**
|
||||
* 现住地详址
|
||||
*/
|
||||
private String habitationAddress;
|
||||
|
||||
/**
|
||||
* 登记人单位代码
|
||||
*/
|
||||
private String registerUnitCode;
|
||||
|
||||
/**
|
||||
* 登记人单位名称
|
||||
*/
|
||||
private String registerUnitName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private Integer createBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private Integer updateBy;
|
||||
|
||||
/**
|
||||
* 0:不活跃,1:活跃
|
||||
*/
|
||||
private Integer isActive;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.ssf.mysqloracletest.mapper;
|
||||
|
||||
import com.ssf.mysqloracletest.domain.MetaImpUserInfo;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 28758
|
||||
* @description 针对表【meta_imp_user_info(重点人员信息表)】的数据库操作Mapper
|
||||
* @createDate 2023-12-01 16:43:42
|
||||
* @Entity com.ssf.mysqloracletest.domain.MetaImpUserInfo
|
||||
*/
|
||||
public interface MetaImpUserInfoMapper extends BaseMapper<MetaImpUserInfo> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,13 @@
|
||||
package com.ssf.mysqloracletest.service;
|
||||
|
||||
import com.ssf.mysqloracletest.domain.MetaImpUserInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 28758
|
||||
* @description 针对表【meta_imp_user_info(重点人员信息表)】的数据库操作Service
|
||||
* @createDate 2023-12-01 16:43:42
|
||||
*/
|
||||
public interface MetaImpUserInfoService extends IService<MetaImpUserInfo> {
|
||||
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package com.ssf.mysqloracletest.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ssf.mysqloracletest.domain.MetaImpUserInfo;
|
||||
import com.ssf.mysqloracletest.service.MetaImpUserInfoService;
|
||||
import com.ssf.mysqloracletest.mapper.MetaImpUserInfoMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 28758
|
||||
* @description 针对表【meta_imp_user_info(重点人员信息表)】的数据库操作Service实现
|
||||
* @createDate 2023-12-01 16:43:42
|
||||
*/
|
||||
@Service
|
||||
public class MetaImpUserInfoServiceImpl extends ServiceImpl<MetaImpUserInfoMapper, MetaImpUserInfo>
|
||||
implements MetaImpUserInfoService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in new issue