| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value= "") |
| | | @ApiModelProperty(value= "客户名称") |
| | | private String owner; |
| | | |
| | | public LocOwner() {} |
| | | @ApiModelProperty(value= "客户编号") |
| | | private Long uuid; |
| | | |
| | | public LocOwner(String owner) { |
| | | this.owner = owner; |
| | | } |
| | | @ApiModelProperty(value= "状态") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value= "客户类别") |
| | | @TableField("owner_type") |
| | | private Integer ownerType; |
| | | |
| | | public LocOwner() {} |
| | | |
| | | } |