| | |
| | | package tech.aiflowy.ai.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import com.mybatisflex.annotation.Column; |
| | | import com.mybatisflex.annotation.Table; |
| | | import tech.aiflowy.ai.entity.base.AiSecondMenuBase; |
| | | |
| | | import java.math.BigInteger; |
| | | |
| | | @Table(value ="ai_second_menu") |
| | | public class AiSecondMenu extends AiSecondMenuBase { |
| | | |
| | | @Column(ignore = true) |
| | | public String firstMenuName; |
| | | |
| | | |
| | | |
| | | public String getFirstMenuName() { |
| | | return firstMenuName; |
| | | } |
| | | |
| | | public void setFirstMenuName(String firstMenuName) { |
| | | this.firstMenuName = firstMenuName; |
| | | } |
| | | } |