| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import jakarta.persistence.Table; |
| | | import jakarta.persistence.Transient; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.Comment; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Transient; |
| | | import jakarta.persistence.Column; |
| | | import jakarta.persistence.Entity; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | @Data |
| | | @Entity |
| | | @org.hibernate.annotations.Table(appliesTo="bip_invoice",comment = "bip对应单据表")//bip对应单据表 |
| | | @jakarta.persistence.Table(name = "bip对应单据表")//bip对应单据表 |
| | | @jakarta.persistence.Table(name = "bip_invoice")//bip对应单据表 |
| | | @Comment("bip对应单据表") |
| | | public class BipInvoice extends BaseModel<BipInvoice> { |
| | | |