12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package WebsiteES.myBatis;
- public class UserCollect {
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column user_collect.user_collect_Id
- *
- * @mbggenerated
- */
- private Long userCollectId;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column user_collect.goodId
- *
- * @mbggenerated
- */
- private Long goodid;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column user_collect.user_collect_Id
- *
- * @return the value of user_collect.user_collect_Id
- *
- * @mbggenerated
- */
- public Long getUserCollectId() {
- return userCollectId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column user_collect.user_collect_Id
- *
- * @param userCollectId the value for user_collect.user_collect_Id
- *
- * @mbggenerated
- */
- public void setUserCollectId(Long userCollectId) {
- this.userCollectId = userCollectId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column user_collect.goodId
- *
- * @return the value of user_collect.goodId
- *
- * @mbggenerated
- */
- public Long getGoodid() {
- return goodid;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column user_collect.goodId
- *
- * @param goodid the value for user_collect.goodId
- *
- * @mbggenerated
- */
- public void setGoodid(Long goodid) {
- this.goodid = goodid;
- }
- }
|