对比新文件 |
| | |
| | | package com.gk.firework.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; |
| | | |
| | | @TableName("patrolorder") |
| | | public class PatrolOrderInfo implements Serializable { |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 检查人用户id userid **/ |
| | | private Long userid; |
| | | |
| | | /**企业id companyid **/ |
| | | private Long companyid; |
| | | |
| | | /**是否整改 1整改 0未整改 ismend **/ |
| | | private Byte ismend; |
| | | |
| | | /**创建人 createdby **/ |
| | | private String createdby; |
| | | |
| | | /** 创建时间 createddate **/ |
| | | private Date createddate; |
| | | |
| | | /** 更新人 modifiedby **/ |
| | | private String modifiedby; |
| | | |
| | | /** 更新时间 modifieddate **/ |
| | | private Date modifieddate; |
| | | |
| | | /** id **/ |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** id **/ |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** userid **/ |
| | | public Long getUserid() { |
| | | return userid; |
| | | } |
| | | |
| | | /** userid **/ |
| | | public void setUserid(Long userid) { |
| | | this.userid = userid; |
| | | } |
| | | |
| | | /** companyid **/ |
| | | public Long getCompanyid() { |
| | | return companyid; |
| | | } |
| | | |
| | | /** companyid **/ |
| | | public void setCompanyid(Long companyid) { |
| | | this.companyid = companyid; |
| | | } |
| | | |
| | | /** ismend **/ |
| | | public Byte getIsmend() { |
| | | return ismend; |
| | | } |
| | | |
| | | /** ismend **/ |
| | | public void setIsmend(Byte ismend) { |
| | | this.ismend = ismend; |
| | | } |
| | | |
| | | /** createdby **/ |
| | | public String getCreatedby() { |
| | | return createdby; |
| | | } |
| | | |
| | | /** createdby **/ |
| | | public void setCreatedby(String createdby) { |
| | | this.createdby = createdby == null ? null : createdby.trim(); |
| | | } |
| | | |
| | | /** createddate **/ |
| | | public Date getCreateddate() { |
| | | return createddate; |
| | | } |
| | | |
| | | /** createddate **/ |
| | | public void setCreateddate(Date createddate) { |
| | | this.createddate = createddate; |
| | | } |
| | | |
| | | /** modifiedby **/ |
| | | public String getModifiedby() { |
| | | return modifiedby; |
| | | } |
| | | |
| | | /** modifiedby **/ |
| | | public void setModifiedby(String modifiedby) { |
| | | this.modifiedby = modifiedby == null ? null : modifiedby.trim(); |
| | | } |
| | | |
| | | /** modifieddate **/ |
| | | public Date getModifieddate() { |
| | | return modifieddate; |
| | | } |
| | | |
| | | /** modifieddate **/ |
| | | public void setModifieddate(Date modifieddate) { |
| | | this.modifieddate = modifieddate; |
| | | } |
| | | } |