|
|
@ -1,12 +1,16 @@ |
|
|
package cc.hiver.mall.entity; |
|
|
package cc.hiver.mall.entity; |
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
import io.swagger.annotations.ApiModel; |
|
|
import io.swagger.annotations.ApiModel; |
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Table; |
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
|
import java.math.BigDecimal; |
|
|
import java.math.BigDecimal; |
|
|
import java.util.Date; |
|
|
import java.util.Date; |
|
|
@ApiModel(value = "采购入库单明细表") |
|
|
@ApiModel(value = "采购入库单明细表") |
|
|
|
|
|
@Table(name = "t_purchase_detail ") |
|
|
|
|
|
@TableName(value = "t_purchase_detail ", autoResultMap = true) |
|
|
public class PurchaseDetail implements Serializable { |
|
|
public class PurchaseDetail implements Serializable { |
|
|
private Long id; |
|
|
private Long id; |
|
|
|
|
|
|
|
|
|