| | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | * @since 2020-09-02 |
| | | */ |
| | | @TableName("t_integral_order") |
| | | @Data |
| | | public class TIntegralOrder extends Model<TIntegralOrder> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | * 状态 1=未处理 2=已处理 3=已删除 |
| | | */ |
| | | private Integer state; |
| | | private Integer integral; |
| | | private String manageRemark; |
| | | |
| | | |
| | | public Integer getId() { |