Commit 5f869aa2 by 董有沛

对账单

parent 891c29a2
...@@ -10,9 +10,9 @@ import com.baomidou.mybatisplus.enums.IdType; ...@@ -10,9 +10,9 @@ import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data; import lombok.Data;
@SuppressWarnings("serial") @SuppressWarnings("serial")
@TableName("hhr_activity") @TableName("hhr_bill")
@Data @Data
public class HhrActivity implements Serializable{ public class Bill implements Serializable{
/** /**
* 主键 * 主键
...@@ -21,65 +21,65 @@ public class HhrActivity implements Serializable{ ...@@ -21,65 +21,65 @@ public class HhrActivity implements Serializable{
private String id; private String id;
/** /**
* 活动标题 * 月份
*/ */
private String title; private String month;
/** /**
* 活动详情 * 项目类型
*/ */
private String desc; private String billType;
/** /**
* 活动积分 * 收支详情
*/ */
private int integral; private String billDetail;
/** /**
* 活动封面图片 * 县分
*/ */
private String imageUrl; private String substName;
/** /**
* 活动类型 * 学校
*/ */
private String activityType; private String schoolName;
/** /**
* 活动小类 * 校区
*/ */
private String subclass; private String campus;
/**
* 学生证照片
*/
private String range;
/** /**
* 状态 * 网点名称
*/ */
private String status; private String networkName;
/** /**
* 排序号 * 网点编码
*/ */
private int sort; private String networkCode;
/** /**
* 创建时间 * 不含税金额
*/ */
private Date createTime; private double amount;
/** /**
* 创建人 * 含税金额
*/ */
private String creator; private double taxAmount;
/** /**
* 修改时间 * 税点
*/ */
private Date updateTime; private double taxPoint;
/**
* 创建时间
*/
private Date createTime;
/** /**
* 删除标记 * 删除标记
*/ */
......
package com.winsun.mapper;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.winsun.bean.Bill;
/**
*
* @author Warden
*
*/
@Mapper
@Component
public interface BillMapper extends BaseMapper<Bill>{
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment