dev
wj 2 years ago
parent 635b0c4fe5
commit 648e9c8264

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

@ -12,8 +12,10 @@ import lombok.Data;
@Data
@TableName(value = "auth_warehouse")
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
*/
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
*

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save