id 自增 取消
This commit is contained in:
@@ -18,7 +18,7 @@ public class Announcement implements Serializable {
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
// @TableId
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ public class InviteAchievement implements Serializable {
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ public class UserInfo implements Serializable {
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ public class UserMoney implements Serializable {
|
|||||||
* 主键id
|
* 主键id
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty("主键id")
|
@ApiModelProperty("主键id")
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ public class UserMoneyDetails implements Serializable {
|
|||||||
* 钱包详情id
|
* 钱包详情id
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty("钱包详情id")
|
@ApiModelProperty("钱包详情id")
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long id;
|
private Long id;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ import java.math.BigDecimal;
|
|||||||
@ApiModel("会员详情")
|
@ApiModel("会员详情")
|
||||||
public class VipDetails implements Serializable {
|
public class VipDetails implements Serializable {
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ public class UniAdCallbackRecord implements Serializable {
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ public class Coupon implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 优惠券d
|
* 优惠券d
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long couponId;
|
private Long couponId;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ public class CouponUser implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 用户优惠券id
|
* 用户优惠券id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long couponUserId;
|
private Long couponUserId;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public class CommentGood implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 评论点赞id
|
* 评论点赞id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long commentGoodId;
|
private Long commentGoodId;
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ public class Course implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 短剧id
|
* 短剧id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long courseId;
|
private Long courseId;
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ public class CourseClassification implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 分类id
|
* 分类id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long classificationId;
|
private Long classificationId;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ public class CourseCollect implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 收藏id
|
* 收藏id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long courseCollectId;
|
private Long courseCollectId;
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ public class CourseComment implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 短剧评论id
|
* 短剧评论id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long courseCommentId;
|
private Long courseCommentId;
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ public class CourseDetails implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 短剧目录id
|
* 短剧目录id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long courseDetailsId;
|
private Long courseDetailsId;
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public class CourseUser implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 我的短剧id
|
* 我的短剧id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long courseUserId;
|
private Long courseUserId;
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public class HelpClassify implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 帮助中心分类
|
* 帮助中心分类
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
private Long helpClassifyId;
|
private Long helpClassifyId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ public class HelpWord implements Serializable {
|
|||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
/**
|
/**
|
||||||
* 帮助文档id
|
* 帮助文档id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ public class InviteAward implements Serializable {
|
|||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
/**
|
/**
|
||||||
* 邀请奖励id
|
* 邀请奖励id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ public class Orders implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 订单id
|
* 订单id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long ordersId;
|
private Long ordersId;
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ public class PayClassify implements Serializable {
|
|||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
/**
|
/**
|
||||||
* 充值分类id
|
* 充值分类id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ public class Search implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 搜索id
|
* 搜索id
|
||||||
*/
|
*/
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
@JsonSerialize(using = ToStringSerializer.class)
|
@JsonSerialize(using = ToStringSerializer.class)
|
||||||
private Long searchId;
|
private Long searchId;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ public class UrlAddress implements Serializable {
|
|||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
@TableId
|
||||||
/**
|
/**
|
||||||
* 域名池id
|
* 域名池id
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user