12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.hssx.entity;
- import java.util.Date;
- public class UserPrizeCount {
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mini_user_prize_count.id
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- private Integer id;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mini_user_prize_count.user_id
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- private String userId;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mini_user_prize_count.indate
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- private Date indate;
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mini_user_prize_count.id
- * @return the value of mini_user_prize_count.id
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mini_user_prize_count.id
- * @param id the value for mini_user_prize_count.id
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mini_user_prize_count.user_id
- * @return the value of mini_user_prize_count.user_id
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- public String getUserId() {
- return userId;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mini_user_prize_count.user_id
- * @param userId the value for mini_user_prize_count.user_id
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- public void setUserId(String userId) {
- this.userId = userId;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mini_user_prize_count.indate
- * @return the value of mini_user_prize_count.indate
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- public Date getIndate() {
- return indate;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mini_user_prize_count.indate
- * @param indate the value for mini_user_prize_count.indate
- * @mbg.generated Mon Sep 23 14:30:35 CST 2019
- */
- public void setIndate(Date indate) {
- this.indate = indate;
- }
- }
|