idtype auto改为input

dev
wj 2 years ago
parent da57675d60
commit f4d9f19a6b

@ -12,7 +12,7 @@ import java.util.Date;
@Data @Data
@TableName(value = "auth_user_bustype") @TableName(value = "auth_user_bustype")
public class InvBusUserEntity { public class InvBusUserEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
@TableField(value = "userId") @TableField(value = "userId")
private String userId; private String userId;

@ -18,7 +18,7 @@ public class BasicBusTypePreEntity {
/** /**
* id * id
*/ */
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

@ -12,7 +12,7 @@ import java.util.List;
@Data @Data
@TableName(value = "io_order_invoice") @TableName(value = "io_order_invoice")
public class IoOrderInvoiceEntity { public class IoOrderInvoiceEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

@ -12,7 +12,7 @@ import lombok.Data;
@Data @Data
@TableName(value = "pur_receive") @TableName(value = "pur_receive")
public class PurReceiveEntity { public class PurReceiveEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

@ -38,7 +38,7 @@ public class CustomerContactEntity{
@TableField("comments") @TableField("comments")
private String comments; private String comments;
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

@ -12,7 +12,7 @@ import lombok.Data;
@Data @Data
@TableName(value = "pur_order") @TableName(value = "pur_order")
public class PurOrderEntity { public class PurOrderEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

@ -12,7 +12,7 @@ import lombok.Data;
@Data @Data
@TableName(value = "sync_data_bustypes") @TableName(value = "sync_data_bustypes")
public class SyncDataBustypeEntity { public class SyncDataBustypeEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
@TableField(value = "`action`") @TableField(value = "`action`")
private String action; private String action;

@ -20,7 +20,7 @@ public class ThrBusTypeOriginEntity {
/** /**
* id * id
*/ */
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

@ -19,7 +19,7 @@ import java.util.Date;
@TableName("thr_corp") @TableName("thr_corp")
public class ThrCorpEntity { public class ThrCorpEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
@TableField("unitId") @TableField("unitId")

@ -20,7 +20,7 @@ import java.util.Date;
@TableName("thr_products") @TableName("thr_products")
public class ThrProductsEntity { public class ThrProductsEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Long id; private Long id;
/** /**

Loading…
Cancel
Save