| | |
| | | package cn.iocoder.yudao.module.erp.dal.dataobject.finance; |
| | | |
| | | import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; |
| | | import cn.iocoder.yudao.module.erp.dal.dataobject.sale.ErpSaleOutDO; |
| | | import com.baomidou.mybatisplus.annotation.KeySequence; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | |
| | | * @author 芋道源码 |
| | | */ |
| | | @TableName("erp_finance_receipt_item") |
| | | @KeySequence("erp_finance_receipt_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。 |
| | | @KeySequence("erp_finance_receipt_item_seq") |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ToString(callSuper = true) |
| | |
| | | private Integer bizType; |
| | | /** |
| | | * 业务编号 |
| | | * |
| | | * 例如说:{@link ErpSaleOutDO#getId()} |
| | | */ |
| | | private Long bizId; |
| | | /** |
| | | * 业务单号 |
| | | * |
| | | * 例如说:{@link ErpSaleOutDO#getNo()} |
| | | */ |
| | | private String bizNo; |
| | | |