| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | * @since 2026-03-25 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @Accessors(chain = true) |
| | | @TableName("sales_ledger_product_process_bind") |
| | | @ApiModel(value="SalesLedgerProductProcessBind对象", description="销售产品额外加工数量") |
| | |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "销售台账产品信息ID") |
| | | private Integer salesLedgerProductId; |
| | | private Long salesLedgerProductId; |
| | | |
| | | @ApiModelProperty(value = "销售产品加工明细ID") |
| | | private Integer salesLedgerProductProcessId; |
| | |
| | | @ApiModelProperty(value = "加工数量") |
| | | private Integer quantity; |
| | | |
| | | @ApiModelProperty(value = "金额") |
| | | private BigDecimal amount; |
| | | |
| | | } |