You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.0 KiB
57 lines
1.0 KiB
package com.yeqifu.bus.entity;
|
|
|
|
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.ToString;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* <p>
|
|
* InnoDB free: 9216 kB
|
|
* </p>
|
|
*
|
|
* @author luoyi-
|
|
* @since 2019-12-05
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Accessors(chain = true)
|
|
@TableName("bus_customer")
|
|
@ToString
|
|
public class Customer implements Serializable {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
private String customername;
|
|
|
|
private String zip;
|
|
|
|
private String address;
|
|
|
|
private String telephone;
|
|
|
|
private String connectionpersion;
|
|
|
|
private String phone;
|
|
|
|
private String bank;
|
|
|
|
private String account;
|
|
|
|
private String email;
|
|
|
|
private String fax;
|
|
|
|
private Integer available;
|
|
|
|
|
|
}//你好
|