| | |
| | | package com.yeshi.fanli.entity.system;
|
| | |
|
| | | import com.yeshi.fanli.entity.SystemEnum;
|
| | | import org.springframework.data.annotation.Transient;
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Table;
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | /**
|
| | | * 业务系统
|
| | | *
|
| | | * @author Administrator
|
| | | */
|
| | | @Table(name = "yeshi_ec_system")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_system")
|
| | | public class BusinessSystem implements Serializable {
|
| | | private static final long serialVersionUID = 2735576110255715412L;
|
| | |
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|
| | | @org.yeshi.utils.mybatis.Column(name = "id")
|
| | | private Long id;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "name")
|
| | | @Column(name = "`name`", length = 50)
|
| | | private String name;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "platform")
|
| | |
| | | private Long createtime;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "beizhu")
|
| | | @Column(name = "`beizhu`", length = 256)
|
| | | private String beizhu;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "package_name")
|
| | | @Column(name = "`package_name`", length = 50)
|
| | | private String packageName;// Android包名或IOS bundleid
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "appid")
|