增加使用次数及剩余次数
parent
155c1b6f52
commit
85cb15d764
@ -0,0 +1,56 @@
|
||||
package com.nmgs.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2024年04月15日 17:02
|
||||
* @description:
|
||||
*/
|
||||
@Data
|
||||
@TableName("wx_out_port")
|
||||
public class WxOutPort {
|
||||
@TableField("listno")
|
||||
private String listno;
|
||||
@TableField("areano")
|
||||
private Integer areano;
|
||||
@TableField("roadno")
|
||||
private Integer roadno;
|
||||
@TableField("stano")
|
||||
private Integer stano;
|
||||
@TableField("portno")
|
||||
private Integer portno;
|
||||
@TableField("manno")
|
||||
private Integer manno;
|
||||
@TableField("man")
|
||||
private String man;
|
||||
@TableField("classno")
|
||||
private Integer classno;
|
||||
@TableField("classdate")
|
||||
private Date classdate;
|
||||
@TableField("dt")
|
||||
private Date dt;
|
||||
@TableField("type")
|
||||
private Integer type;
|
||||
@TableField("atype")
|
||||
private Integer atype;
|
||||
@TableField("acarno")
|
||||
private String acarno;
|
||||
@TableField("carcount")
|
||||
private String carcount;
|
||||
@TableField("cash")
|
||||
private String cash;
|
||||
@TableField("freetype")
|
||||
private String freetype;
|
||||
@TableField("roadname")
|
||||
private String roadname;
|
||||
@TableField("staname")
|
||||
private String staname;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.nmgs.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.nmgs.entity.WxOutPort;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2024年04月15日 17:07
|
||||
* @description:
|
||||
*/
|
||||
@Mapper
|
||||
public interface WxOutPortMapper extends BaseMapper<WxOutPort> {
|
||||
}
|
||||
@ -1,3 +1,4 @@
|
||||
序号 日期 版本号 说明
|
||||
1 2023年11月27日 1.0.0 初始版本号
|
||||
2 2023年11月29日 1.0.1 增加微信解绑申请操作
|
||||
3 2024年04月16日 1.0.2 增加使用次数及剩余次数
|
||||
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Created-By: IntelliJ IDEA
|
||||
Built-By: shuguang
|
||||
Build-Jdk: version 1.8.0_121
|
||||
Implementation-Title: FreeCarRegistration
|
||||
Implementation-Version: 0.0.1-SNAPSHOT
|
||||
Implementation-Vendor-Id: com.nmgs
|
||||
Main-Class: ${start-class}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,3 +1,4 @@
|
||||
序号 日期 版本号 说明
|
||||
1 2023年11月27日 1.0.0 初始版本号
|
||||
2 2023年11月29日 1.0.1 增加微信解绑申请操作
|
||||
3 2024年04月16日 1.0.2 增加使用次数及剩余次数
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,3 +1,4 @@
|
||||
序号 日期 版本号 说明
|
||||
1 2023年11月27日 1.0.0 初始版本号
|
||||
2 2023年11月29日 1.0.1 增加微信解绑申请操作
|
||||
3 2024年04月16日 1.0.2 增加使用次数及剩余次数
|
||||
Loading…
Reference in New Issue