| | |
| | | * @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; |
| | | |
| | | /** |
| | | * 操作内容 |
| | |
| | | * 操作人 |
| | | */ |
| | | @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; |
| | | } |
| | | } |