1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.huiju.estateagents.property.model;
-
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
-
- import java.io.Serializable;
- import java.util.Date;
-
- /**
- * <p>
- * 缴费项表
- * </p>
- *
- * @author weiximei
- * @since 2019-02-13
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("tp_bill")
- public class Bill implements Serializable {
-
- private static final long serialVersionUID = 1L;
-
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
-
- /**
- * 小区id
- */
- private Integer orgId;
-
- /**
- * 收费项名称
- */
- private String billName;
-
- /**
- * 缴费项说明
- */
- private String billExplain;
-
- private String payPrice;
-
- /**
- * 应缴户数
- */
- private Integer payTotalNum;
-
- /**
- * 已缴户数
- */
- private Integer payedNum;
-
- /**
- * 未缴户数
- */
- private Integer unpayedNum;
-
- /**
- * 项目状态 0:正在收费 1:收费完成 2: 草稿 3:正在收费
- */
- private String billStatus;
-
- /**
- * 截止时间
- */
- private Date endDate;
-
- /**
- * 创建人
- */
- private Integer createUser;
-
- /**
- * 创建时间
- */
- private Date createDate;
-
- /**
- * 更新人
- */
- private Integer updateUser;
-
- /**
- * 更新时间
- */
- private Date updateDate;
-
-
- }
|