id类型调整

pro
wj 2 years ago
parent 2d623577f1
commit 62b26214a6

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

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

@ -14,7 +14,7 @@ import lombok.Data;
@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;
/**

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

@ -16,7 +16,7 @@ import java.util.Date;
@TableName(value = "pur_delivery")
public class PurDeliveryEntity {
@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;
/**

@ -16,7 +16,7 @@ import java.util.Date;
public class PurReturnedEntity {
@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;

@ -18,7 +18,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")

@ -17,7 +17,7 @@ import java.util.Date;
@Data
public class ThrCorpExportLogEntity{
@TableId(value = "id", type = IdType.AUTO)
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**

@ -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