package com.newfiber.api.pc.model.EventsManage; import com.newfiber.api.core.base.BaseDomain; import java.util.Date; /** * 事件图片表 Domain * @author xcc * @date 2018-12-04 16:22:00 */ public class ComplainPic extends BaseDomain { private static final long serialVersionUID = 1L; /** */ private Long serial; /** 事件唯一编号 */ private String eventsNo; /** 图片类型:1:处理前图片;2:处理后图片 */ private Integer picType; /** 1:处理前图片;2:处理后图片 */ private String picTypeName; /** 图片名称 */ private String picName; /** 图片路径 */ private String picPath; /** 图片全路径 **/ private String picRealPath; /** 创建时间 */ private Date createTime; public static long getSerialVersionUID() { return serialVersionUID; } public void setPicRealPath(String picRealPath) { this.picRealPath = picRealPath; } public String getPicRealPath() { return picRealPath; } /** 设置: */ public void setSerial(Long serial) { this.serial = serial; } /** 获取: */ public Long getSerial() { return serial; } /** 设置:事件唯一编号 */ public void setEventsNo(String eventsNo) { this.eventsNo = eventsNo; } /** 获取:事件唯一编号 */ public String getEventsNo() { return eventsNo; } /** 设置:图片类型:1:处理前图片;2:处理后图片 */ public void setPicType(Integer picType) { this.picType = picType; } /** 获取:图片类型:1:处理前图片;2:处理后图片 */ public Integer getPicType() { return picType; } /** 设置:1:处理前图片;2:处理后图片 */ public void setPicTypeName(String picTypeName) { this.picTypeName = picTypeName; } /** 获取:1:处理前图片;2:处理后图片 */ public String getPicTypeName() { return picTypeName; } /** 设置:图片名称 */ public void setPicName(String picName) { this.picName = picName; } /** 获取:图片名称 */ public String getPicName() { return picName; } /** 设置:图片路径 */ public void setPicPath(String picPath) { this.picPath = picPath; } /** 获取:图片路径 */ public String getPicPath() { return picPath; } /** 设置:创建时间 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** 获取:创建时间 */ public Date getCreateTime() { return createTime; } }