更新9.29
This commit is contained in:
parent
3817350e1d
commit
ee46331d8d
@ -66,7 +66,8 @@
|
|||||||
create_time,
|
create_time,
|
||||||
update_time,
|
update_time,
|
||||||
create_by,
|
create_by,
|
||||||
update_by
|
update_by,
|
||||||
|
address_id
|
||||||
from integral_orders
|
from integral_orders
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</select>
|
</select>
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
package com.fuint.business.userManager.entity;
|
package com.fuint.business.userManager.entity;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.fuint.repository.model.base.BaseEntity;
|
import com.fuint.repository.model.base.BaseEntity;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@ -14,6 +17,7 @@ import lombok.Data;
|
|||||||
public class MtUserExpressAddress extends BaseEntity {
|
public class MtUserExpressAddress extends BaseEntity {
|
||||||
private static final long serialVersionUID = -79175411933260284L;
|
private static final long serialVersionUID = -79175411933260284L;
|
||||||
|
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
private Integer id;
|
private Integer id;
|
||||||
/**
|
/**
|
||||||
* 关联用户ID
|
* 关联用户ID
|
||||||
|
Loading…
Reference in New Issue
Block a user