feat():增加OrderPayInfo表中的id
parent
69e0af6b5a
commit
20deaaacff
|
@ -1,5 +1,7 @@
|
||||||
package com.muyu.cloud.pay.domain;
|
package com.muyu.cloud.pay.domain;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import com.muyu.cloud.pay.domain.resp.CustomerOrderPaySimpleResp;
|
import com.muyu.cloud.pay.domain.resp.CustomerOrderPaySimpleResp;
|
||||||
import com.muyu.common.core.enums.SysPayType;
|
import com.muyu.common.core.enums.SysPayType;
|
||||||
|
@ -27,6 +29,12 @@ import java.math.BigDecimal;
|
||||||
@TableName(value = "order_pay_info",autoResultMap = true)
|
@TableName(value = "order_pay_info",autoResultMap = true)
|
||||||
public class OrderPayInfo extends BaseEntity{
|
public class OrderPayInfo extends BaseEntity{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
@TableId(value = "id",type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 客户名称
|
* 客户名称
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue