dev
wj 2 years ago
parent 635b0c4fe5
commit 648e9c8264

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

@ -12,8 +12,10 @@ import lombok.Data;
@Data @Data
@TableName(value = "auth_warehouse") @TableName(value = "auth_warehouse")
public class AuthWarehouseEntity { public class AuthWarehouseEntity {
@TableId(value = "id", type = IdType.AUTO)
private String id;
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/** /**
* *

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

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

@ -14,8 +14,8 @@ import java.util.Date;
@Data @Data
@TableName(value = "basic_products") @TableName(value = "basic_products")
public class BasicProductsEntity { public class BasicProductsEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Integer id; private Long id;
/** /**
* UUID * UUID

@ -15,8 +15,8 @@ import java.util.Date;
@TableName(value = "basic_udirel") @TableName(value = "basic_udirel")
public class BasicUdirelEntity { public class BasicUdirelEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Integer id; private Long id;
/** /**
* UUID * UUID

@ -14,9 +14,8 @@ import java.math.BigDecimal;
@Data @Data
@TableName(value = "io_order_detail_biz") @TableName(value = "io_order_detail_biz")
public class IoOrderDetailBizEntity { public class IoOrderDetailBizEntity {
@TableId(value = "id", type = IdType.INPUT)
@TableId(value = "id", type = IdType.AUTO) private Long id;
private Integer id;
/** /**
* *

@ -15,8 +15,8 @@ import java.math.BigDecimal;
@TableName(value = "io_order_detail_code") @TableName(value = "io_order_detail_code")
public class IoOrderDetailCodeEntity { public class IoOrderDetailCodeEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Integer id; private Long id;
/** /**
* *

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

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

@ -12,8 +12,8 @@ import java.util.Date;
@TableName(value = "thr_dept") @TableName(value = "thr_dept")
public class ThrDeptEntity { public class ThrDeptEntity {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.INPUT)
private Integer id; private Long id;
@TableField(value = "pId") @TableField(value = "pId")
private Integer pId; private Integer pId;

@ -10,7 +10,6 @@ import lombok.Data;
@TableName(value = "thr_inv_warehouse") @TableName(value = "thr_inv_warehouse")
public class ThrInvWarehouseEntity { public class ThrInvWarehouseEntity {
@TableId(value = "id", type = IdType.AUTO)
private String id; private String id;
@TableField(value = "code") @TableField(value = "code")

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

Loading…
Cancel
Save