| | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | |
| | | /** |
| | | * 党员在表中的id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 转正时间 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Date employmentTime; |
| | | |
| | | /** |
| | |
| | | private String positionTwo; |
| | | |
| | | /** |
| | | * 党组织名字 |
| | | */ |
| | | private String orgName; |
| | | |
| | | private Long helpCommunityId; |
| | | |
| | | private Long villageId; |
| | | |
| | | private String natureName; |
| | | |
| | | private Integer natureId; |
| | | |
| | | private String otherRemark; |
| | | |
| | | private String helpCommunityName; |
| | | |
| | | private String communityName; |
| | | |
| | | |
| | | /** |
| | | * 党员审查结果 0待审核 1 审核通过 3审核失败 |
| | | */ |
| | | public interface AuditResult { |