package com.goafanti.common.model; import java.io.Serializable; import java.util.Date; /** * 订单公出信息表 * @TableName t_order_public_release_count */ public class TOrderPublicReleaseCount implements Serializable { /** * */ private Integer id; /** * 订单编号 */ private String orderNo; /** * 状态0=无需限制,1需要限制 */ private Integer status; /** * 最大公出 */ private Double maxDuration; /** * 实际公出 */ private Double actualDuration; /** * 超出公出 */ private Double exceedDuration; /** * 公出人数 */ private Integer peopleCount; /** * 公出次数 */ private Integer frequency; /** * 发起时间 */ private Date createTime; private static final long serialVersionUID = 1L; /** * */ public Integer getId() { return id; } /** * */ public void setId(Integer id) { this.id = id; } /** * 订单编号 */ public String getOrderNo() { return orderNo; } /** * 订单编号 */ public void setOrderNo(String orderNo) { this.orderNo = orderNo; } /** * 状态0=无需限制,1需要限制 */ public Integer getStatus() { return status; } /** * 状态0=无需限制,1需要限制 */ public void setStatus(Integer status) { this.status = status; } /** * 最大公出 */ public Double getMaxDuration() { return maxDuration; } /** * 最大公出 */ public void setMaxDuration(Double maxDuration) { this.maxDuration = maxDuration; } /** * 实际公出 */ public Double getActualDuration() { return actualDuration; } /** * 实际公出 */ public void setActualDuration(Double actualDuration) { this.actualDuration = actualDuration; } /** * 超出公出 */ public Double getExceedDuration() { return exceedDuration; } /** * 超出公出 */ public void setExceedDuration(Double exceedDuration) { this.exceedDuration = exceedDuration; } /** * 公出人数 */ public Integer getPeopleCount() { return peopleCount; } /** * 公出人数 */ public void setPeopleCount(Integer peopleCount) { this.peopleCount = peopleCount; } /** * 公出次数 */ public Integer getFrequency() { return frequency; } /** * 公出次数 */ public void setFrequency(Integer frequency) { this.frequency = frequency; } /** * 发起时间 */ public Date getCreateTime() { return createTime; } /** * 发起时间 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } }