idtype auto改为input

dev
wj 2 years ago
parent da57675d60
commit f4d9f19a6b

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save