zoukankan      html  css  js  c++  java
  • 团队作业

    package com.atguigu.crud.bean;

    public class Clubtype {
    private Byte id;

    private String name;

    private String introduce;

    public Byte getId() {
    return id;
    }

    public void setId(Byte id) {
    this.id = id;
    }

    public String getName() {
    return name;
    }

    public void setName(String name) {
    this.name = name == null ? null : name.trim();
    }

    public String getIntroduce() {
    return introduce;
    }

    public void setIntroduce(String introduce) {
    this.introduce = introduce == null ? null : introduce.trim();
    }
    }

  • 相关阅读:
    事务的隔离级别
    事务的隔离
    事务简介
    leetcode647
    leetcode394
    leetcode96
    leetcode814
    leetcode738
    leetcode621
    leetcode763
  • 原文地址:https://www.cnblogs.com/9635741zly/p/14916617.html
Copyright © 2011-2022 走看看