Commit 5a25f762 authored by liming's avatar liming

清除无用类

parent b8df10a1
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class GameProduct implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 商品分类
*/
private Long type;
/**
* 商品名称
*/
private String name;
/**
* 展示图片
*/
private String img;
/**
* 价格
*/
private Integer price;
/**
* 排序号
*/
private Integer showOrder;
/**
* 状态1.上架 2.下架
*/
private Integer status;
/**
* 版本号
*/
private Long version;
/**
* 删除标记
*/
private Integer deleted;
/**
* 创建部门id
*/
private Long ctDeptId;
/**
* 创建人id
*/
private Long ctUserId;
/**
* 创建时间
*/
private LocalDateTime ctDate;
/**
* 修改人id
*/
private Long lmUserId;
/**
* 修改时间
*/
private LocalDateTime lmDate;
}
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class GameProductProps implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 商品id
*/
private Long productId;
/**
* 道具id
*/
private Long propsId;
/**
* 版本号
*/
private Long version;
/**
* 删除标记
*/
private Integer deleted;
/**
* 创建人id
*/
private Long ctUserId;
/**
* 创建时间
*/
private LocalDateTime ctDate;
/**
* 修改人id
*/
private Long lmUserId;
/**
* 修改时间
*/
private LocalDateTime lmDate;
}
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class GameProductType implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 道具名称
*/
private String name;
/**
* 排序号
*/
private Integer showOrder;
/**
* 状态1.上架 2.下架
*/
private Integer status;
/**
* 版本号
*/
private Long version;
/**
* 删除标记
*/
private Integer deleted;
/**
* 创建部门id
*/
private Long ctDeptId;
/**
* 创建人id
*/
private Long ctUserId;
/**
* 创建时间
*/
private LocalDateTime ctDate;
/**
* 修改人id
*/
private Long lmUserId;
/**
* 修改时间
*/
private LocalDateTime lmDate;
}
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class GameProps implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 道具分类
*/
private Long type;
/**
* 道具名称
*/
private String name;
/**
* 展示图片
*/
private String img;
/**
* 获取方式 1.赠送 2.购买
*/
private Integer getWay;
/**
* 游戏中资源的key
*/
private String resourceKey;
/**
* 排序号
*/
private Integer showOrder;
/**
* 版本号
*/
private Long version;
/**
* 删除标记
*/
private Integer deleted;
/**
* 创建部门id
*/
private Long ctDeptId;
/**
* 创建人id
*/
private Long ctUserId;
/**
* 创建时间
*/
private LocalDateTime ctDate;
/**
* 修改人id
*/
private Long lmUserId;
/**
* 修改时间
*/
private LocalDateTime lmDate;
}
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class GamePropsType implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 道具名称
*/
private String name;
/**
* 排序号
*/
private Integer showOrder;
/**
* 版本号
*/
private Long version;
/**
* 删除标记
*/
private Integer deleted;
/**
* 创建部门id
*/
private Long ctDeptId;
/**
* 创建人id
*/
private Long ctUserId;
/**
* 创建时间
*/
private LocalDateTime ctDate;
/**
* 修改人id
*/
private Long lmUserId;
/**
* 修改时间
*/
private LocalDateTime lmDate;
}
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class SportUserProductOrder implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 玩家id
*/
private Long sportUserId;
/**
* 商品id
*/
private Long productId;
/**
* 购买价格
*/
private Integer price;
/**
* 创建时间
*/
private LocalDateTime ctDate;
}
package com.antai.sport.http.server.repository.shop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author liming
* @since 2022-07-20
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class SportUserProps implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 玩家id
*/
private Long sportUserId;
/**
* 道具id
*/
private Long propsId;
/**
* 商品订单id
*/
private Long productOrderId;
/**
* 创建时间
*/
private LocalDateTime ctDate;
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.GameProduct;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface GameProductMapper extends BaseMapper<GameProduct> {
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.GameProductProps;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface GameProductPropsMapper extends BaseMapper<GameProductProps> {
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.GameProductType;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface GameProductTypeMapper extends BaseMapper<GameProductType> {
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.GameProps;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface GamePropsMapper extends BaseMapper<GameProps> {
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.GamePropsType;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface GamePropsTypeMapper extends BaseMapper<GamePropsType> {
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.SportUserProductOrder;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface SportUserProductOrderMapper extends BaseMapper<SportUserProductOrder> {
}
package com.antai.sport.http.server.repository.shop.mapper;
import com.antai.sport.http.server.repository.shop.entity.SportUserProps;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author liming
* @since 2022-07-20
*/
public interface SportUserPropsMapper extends BaseMapper<SportUserProps> {
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.GameProductMapper">
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.GameProductPropsMapper">
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.GameProductTypeMapper">
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.GamePropsMapper">
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.GamePropsTypeMapper">
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.SportUserProductOrderMapper">
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.antai.sport.http.server.repository.shop.mapper.SportUserPropsMapper">
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment