package com.ruoyi.sales.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.io.Serializable;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* <p>
|
* 销售产品额外加工数量
|
* </p>
|
*
|
* @author deslrey
|
* @since 2026-03-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("sales_ledger_product_process_bind")
|
@ApiModel(value="SalesLedgerProductProcessBind对象", description="销售产品额外加工数量")
|
public class SalesLedgerProductProcessBind implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "主键")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
@ApiModelProperty(value = "销售台账产品信息ID")
|
private Long salesLedgerProductId;
|
|
@ApiModelProperty(value = "销售产品加工明细ID")
|
private Integer salesLedgerProductProcessId;
|
|
@ApiModelProperty(value = "加工数量")
|
private Integer quantity;
|
|
|
}
|