mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-02 18:26:38 +08:00
adding JiaMin coding
This commit is contained in:
parent
4afa25d02b
commit
78736daf83
@ -0,0 +1,44 @@
|
|||||||
|
package net.lab1024.smartadmin.module.system.royalcanin.good.model;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@TableName("t_good_orders")
|
||||||
|
public class OrderEntity {
|
||||||
|
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
private String orderStatus;
|
||||||
|
|
||||||
|
private String orderAmount;
|
||||||
|
|
||||||
|
private String payAmount ="";
|
||||||
|
|
||||||
|
private String productId;
|
||||||
|
|
||||||
|
private String productName;
|
||||||
|
|
||||||
|
private int buyCount;
|
||||||
|
|
||||||
|
private Date payTime;
|
||||||
|
|
||||||
|
private String couponCode="";
|
||||||
|
|
||||||
|
private String couponAmount="0";
|
||||||
|
|
||||||
|
private String couponId="";
|
||||||
|
|
||||||
|
private String couponName="";
|
||||||
|
|
||||||
|
private String memberId="";
|
||||||
|
|
||||||
|
private String phoneNumber="";
|
||||||
|
|
||||||
|
private String payType="1";
|
||||||
|
|
||||||
|
private OrderAddress orderAddress;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user