| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fzzy.igds.constant.Constant; |
| | | import lombok.Data; |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | |
| | | import javax.persistence.*; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description 区划码 |
| | |
| | | @Column(name = "remark", columnDefinition = "varchar(100) COMMENT '备注说明'") |
| | | @TableField("remark") |
| | | private String remark; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<DicArea> children; |
| | | } |