• This project
    • Loading...
  • Sign in

zyn / cjs-site

75981343286505
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • cjs-site
  • ..
  • pay
  • OrderIdSeq.java
  • wangbeiyong's avatar
    init · 10fdb5aa
    10fdb5aa
    wangbeiyong authored 2019-01-24 11:45:00 +0800
OrderIdSeq.java 393 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
package com.cjs.site.model.pay;

import com.cjs.site.model.BaseInfo;

/**
 * 订单号-自增
 * @author tongxiaochuan
 *
 */
public class OrderIdSeq extends BaseInfo {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	private Integer orderId;

	public Integer getOrderId() {
		return orderId;
	}

	public void setOrderId(Integer orderId) {
		this.orderId = orderId;
	}
	
}