liujie
2025-06-09 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActWarehouseOperation.java
@@ -22,22 +22,19 @@
 * @since 2021-10-09 17:14:33
 */
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@ApiModel("爱心义操作表")
public class ComActWarehouseOperation implements Serializable {
    private static final long serialVersionUID = -74893029545359720L;
    @TableId(type = IdType.AUTO)
    private Integer id;
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
     * 物品id
     */
    @ApiModelProperty(value = "物品id")
    private Integer goodsId;
    private Long goodsId;
    /**
     * 操作内容
@@ -55,6 +52,22 @@
     * 操作人
     */
    @ApiModelProperty(value = "操作人")
    private Integer userId;
    private Long userId;
    /**
     *类型 1签收,取消操作 2捐赠操作
     */
    @ApiModelProperty(value = "类型 1签收,取消操作 2捐赠操作")
    private Integer type;
    /**
     * 申请id
     */
    @ApiModelProperty(value = "申请id")
    private Long applyId;
    public interface type{
        int bxs=1;
        int xs=2;
    }
}