| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- 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;
- }
- }
|