| | |
| | |
|
| | | import com.baomidou.mybatisplus.extension.activerecord.Model;
|
| | | import java.io.Serializable;
|
| | | import java.sql.Date;
|
| | |
|
| | | /**
|
| | | * 警员表
|
| | | (NewsPolice)表实体类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:42
|
| | | * @since 2022-11-17 11:38:27
|
| | | */
|
| | | @SuppressWarnings("serial")
|
| | | public class NewsPolice extends Model<NewsPolice> {
|
| | | //自增主键
|
| | | private Object id;
|
| | | private Integer id;
|
| | | //警员名称
|
| | | private String rname;
|
| | | //创建时间
|
| | | private Date createTime;
|
| | | //修改时间
|
| | | private Date updateTime;
|
| | | //机构名称
|
| | | private String organizationName;
|
| | | //机构id
|
| | | private String newsDepartmentId;
|
| | | //手机号码
|
| | | private String phone;
|
| | |
|
| | |
|
| | | public Object getId() {
|
| | | public Integer getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Object id) {
|
| | | public void setId(Integer id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | |
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public String getOrganizationName() {
|
| | | return organizationName;
|
| | | public String getNewsDepartmentId() {
|
| | | return newsDepartmentId;
|
| | | }
|
| | |
|
| | | public void setOrganizationName(String organizationName) {
|
| | | this.organizationName = organizationName;
|
| | | public void setNewsDepartmentId(String newsDepartmentId) {
|
| | | this.newsDepartmentId = newsDepartmentId;
|
| | | }
|
| | |
|
| | | public String getPhone() {
|
| | | return phone;
|
| | | }
|
| | |
|
| | | public void setPhone(String phone) {
|
| | | this.phone = phone;
|
| | | }
|
| | |
|
| | | /**
|